diff --git a/src/overlays/actors/ovl_En_Go/z_en_go.c b/src/overlays/actors/ovl_En_Go/z_en_go.c index 49cf65b8d3..3ec06e95a9 100644 --- a/src/overlays/actors/ovl_En_Go/z_en_go.c +++ b/src/overlays/actors/ovl_En_Go/z_en_go.c @@ -890,7 +890,7 @@ void EnGo_BiggoronActionFunc(EnGo* this, PlayState* play) { } else { if (INV_CONTENT(ITEM_TRADE_ADULT) == ITEM_EYE_DROPS) { EnGo_ChangeAnim(this, ENGO_ANIM_WALKING_LOOP); - this->unk_21E = 100; + this->eyedropsTimer = 100; this->interactInfo.talkState = NPC_TALK_STATE_IDLE; EnGo_SetupAction(this, EnGo_Eyedrops); play->msgCtx.msgMode = MSGMODE_PAUSED; @@ -1027,7 +1027,7 @@ void func_80A40C78(EnGo* this, PlayState* play) { } void EnGo_Eyedrops(EnGo* this, PlayState* play) { - if (DECR(this->unk_21E) == 0) { + if (DECR(this->eyedropsTimer) == 0) { this->actor.textId = 0x305A; Message_ContinueTextbox(play, this->actor.textId); this->interactInfo.talkState = NPC_TALK_STATE_TALKING; diff --git a/src/overlays/actors/ovl_En_Go/z_en_go.h b/src/overlays/actors/ovl_En_Go/z_en_go.h index cd0ddfd86a..4a8d433440 100644 --- a/src/overlays/actors/ovl_En_Go/z_en_go.h +++ b/src/overlays/actors/ovl_En_Go/z_en_go.h @@ -61,7 +61,7 @@ typedef struct EnGo { /* 0x0218 */ s16 waypoint; /* 0x021A */ s16 bounceCounter; /* 0x021C */ s16 bounceTimer; - /* 0x021E */ s16 unk_21E; + /* 0x021E */ s16 eyedropsTimer; /* 0x0220 */ s16 jointTable[GORON_LIMB_MAX]; /* 0x0244 */ s16 morphTable[GORON_LIMB_MAX]; /* 0x0268 */ EnGoEffect effects[EN_GO_EFFECT_COUNT];