Subtle rename of enum members

This commit is contained in:
JordanLongstaff 2025-06-08 23:49:22 -04:00
parent 0abdb5cd06
commit 80f0ed2d7c
2 changed files with 4 additions and 4 deletions

View File

@ -1069,7 +1069,7 @@ void EnRu1_SpawnBlueWarp(EnRu1* this, PlayState* play) {
void EnRu1_InitInBossRoom(EnRu1* this, PlayState* play) {
EnRu1_AnimationChange(this, &gRutoChildWaitHandsOnHipsAnim, ANIMMODE_LOOP, 0, false);
this->action = ENRU1_ACTION_BOSS_ROOM_PRE_SPAWN;
this->action = ENRU1_ACTION_PRE_SPAWN_BOSS_ROOM;
this->actor.shape.yOffset = -10000.0f;
EnRu1_SetEyes(this, ENRU1_EYES_BLUSH);
EnRu1_SetMouth(this, ENRU1_MOUTH_OPEN);
@ -1157,7 +1157,7 @@ void EnRu1_SetBlueWarpState(EnRu1* this, s32 state) {
}
void EnRu1_TriggerSpawnInBossRoom(EnRu1* this, PlayState* play) {
this->action = ENRU1_ACTION_BOSS_ROOM_SPAWN;
this->action = ENRU1_ACTION_SPAWN_BOSS_ROOM;
}
void EnRu1_SetupRiseThroughBlueWarp(EnRu1* this, PlayState* play) {

View File

@ -76,8 +76,8 @@ typedef enum EnRu1Action {
/* 12 */ ENRU1_ACTION_12,
/* 13 */ ENRU1_ACTION_13,
/* 14 */ ENRU1_ACTION_14,
/* 15 */ ENRU1_ACTION_BOSS_ROOM_PRE_SPAWN,
/* 16 */ ENRU1_ACTION_BOSS_ROOM_SPAWN,
/* 15 */ ENRU1_ACTION_PRE_SPAWN_BOSS_ROOM,
/* 16 */ ENRU1_ACTION_SPAWN_BOSS_ROOM,
/* 17 */ ENRU1_ACTION_RISE_THROUGH_BLUE_WARP,
/* 18 */ ENRU1_ACTION_WAIT_INSIDE_BLUE_WARP,
/* 19 */ ENRU1_ACTION_LINK_WALKS_TO_POINT_IN_BLUE_WARP,