This commit is contained in:
Dragorn421 2025-05-26 15:46:54 +02:00
parent 6396f591d8
commit 84f1f2f0c0
No known key found for this signature in database
GPG Key ID: 381AEBAF3D429335
2 changed files with 2 additions and 2 deletions

View File

@ -167,7 +167,7 @@ void EnDntNomal_Init(Actor* thisx, PlayState* play) {
this->requiredObjectSlot = Object_GetSlot(&play->objectCtx, this->objectId);
if (this->requiredObjectSlot < 0) {
Actor_Kill(&this->actor);
PRINTF(VT_FGCOL(MAGENTA) T(" なにみの? %d\n", " What? %d\n") VT_RST "\n", this->requiredObjectSlot);
PRINTF(VT_FGCOL(MAGENTA) " なにみの? %d\n" VT_RST "\n", this->requiredObjectSlot);
PRINTF(VT_FGCOL(CYAN) T(" バンクおかしいしぞ!%d\n", " The bank is weird! %d\n") VT_RST "\n",
this->actor.params);
return;

View File

@ -656,7 +656,7 @@ void EnFhgFire_EnergyBall(EnFhgFire* this, PlayState* play) {
this->actor.speed = 20.0f;
}
Actor_PlaySfx(&this->actor, NA_SE_EN_FANTOM_FIRE - SFX_FLAG);
PRINTF(T("なぜだああああああああ %d\n", "Why ah ah ah ah %d\n"), this->work[FHGFIRE_VARIANCE_TIMER]);
PRINTF(T("なぜだああああああああ %d\n", "Whyyyyyyyy %d\n"), this->work[FHGFIRE_VARIANCE_TIMER]);
}
}