mirror of
https://github.com/zeldaret/oot.git
synced 2025-07-13 03:14:38 +00:00
T() macro 7 (#2102)
* T() macro in most of the rest of code (except z_message, z_actor, ucode_disas, gfxprint, game, fault, db_camera) * remaining T() macro in boot * format * review
This commit is contained in:
parent
7592bf1e42
commit
16ec9b1e13
10 changed files with 49 additions and 38 deletions
|
@ -19,7 +19,8 @@ void EffectShieldParticle_Init(void* thisx, void* initParamsx) {
|
|||
this->numElements = initParams->numElements;
|
||||
if (this->numElements > ARRAY_COUNT(this->elements)) {
|
||||
PRINTF(VT_FGCOL(RED));
|
||||
PRINTF("EffectShieldParticle_ct():パーティクル数がオーバしてます。\n");
|
||||
PRINTF(T("EffectShieldParticle_ct():パーティクル数がオーバしてます。\n",
|
||||
"EffectShieldParticle_ct(): Number of particles exceeded.\n"));
|
||||
PRINTF(VT_RST);
|
||||
return;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue