summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGarrett Cox <garrettjcox@gmail.com>2026-01-18 00:54:46 -0600
committerGitHub <noreply@github.com>2026-01-18 00:54:46 -0600
commitbb1c03b60ebea92be8f8fd0a5b5c137b542669e9 (patch)
treef79ecd57f1b7d0f6f206f8f013d87652f965a463
parent4661df2e6514d7a8244a449cfa1b2532ca5b03d7 (diff)
parentc83b446bebec5b7d884d7136310897e1e836e4ac (diff)
Merge pull request #1469 from HarbourMasters/develop-mion
develop-mion -> develop
-rw-r--r--mm/src/overlays/actors/ovl_En_Ot/z_en_ot.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/mm/src/overlays/actors/ovl_En_Ot/z_en_ot.c b/mm/src/overlays/actors/ovl_En_Ot/z_en_ot.c
index 35daa0fa1..14c32690f 100644
--- a/mm/src/overlays/actors/ovl_En_Ot/z_en_ot.c
+++ b/mm/src/overlays/actors/ovl_En_Ot/z_en_ot.c
@@ -14,6 +14,7 @@ void EnOt_Init(Actor* thisx, PlayState* play);
void EnOt_Destroy(Actor* thisx, PlayState* play);
void EnOt_Update(Actor* thisx, PlayState* play);
void EnOt_Draw(Actor* thisx, PlayState* play);
+void EnOt_Reset(void);
void func_80B5BDA8(EnOt* this, PlayState* play);
void func_80B5BE04(EnOt* this, PlayState* play);
@@ -70,6 +71,7 @@ ActorProfile En_Ot_Profile = {
/**/ EnOt_Destroy,
/**/ EnOt_Update,
/**/ EnOt_Draw,
+ /**/ EnOt_Reset,
};
static ColliderCylinderInit sCylinderInit = {
@@ -1200,3 +1202,9 @@ void func_80B5E1D8(PlayState* play, EnOtUnkStruct* arg1, s32 arg2) {
CLOSE_DISPS(play->state.gfxCtx);
}
+
+void EnOt_Reset(void) {
+ D_80B5E880 = NULL;
+ D_80B5E884 = NULL;
+ D_80B5E888 = NULL;
+}