diff options
| author | Dragorn421 <Dragorn421@users.noreply.github.com> | 2023-09-22 20:48:09 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-09-22 14:48:09 -0400 |
| commit | fefeb369dd19172d5eb419f8c8373cfb10d59d19 (patch) | |
| tree | a51cf7c4b4feac8f5640afd2d7564fdef9705d75 /src/code/z_kaleido_setup.c | |
| parent | 4842f62833eda04e3883c9ddb4cff133cea27cb0 (diff) | |
Name the main pause state and add placeholder enum for main (sub)states (#1551)
Diffstat (limited to 'src/code/z_kaleido_setup.c')
| -rw-r--r-- | src/code/z_kaleido_setup.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/code/z_kaleido_setup.c b/src/code/z_kaleido_setup.c index 554282ba1..9f264378b 100644 --- a/src/code/z_kaleido_setup.c +++ b/src/code/z_kaleido_setup.c @@ -31,7 +31,7 @@ void KaleidoSetup_Update(PlayState* play) { WREG(17) = 155; pauseCtx->unk_1EA = 0; - pauseCtx->unk_1E4 = 1; + pauseCtx->mainState = PAUSE_MAIN_STATE_1; if (ZREG(48) == 0) { pauseCtx->eye.x = sKaleidoSetupEyeX0[pauseCtx->pageIndex]; @@ -71,7 +71,7 @@ void KaleidoSetup_Init(PlayState* play) { pauseCtx->debugState = 0; pauseCtx->alpha = 0; pauseCtx->unk_1EA = 0; - pauseCtx->unk_1E4 = 0; + pauseCtx->mainState = PAUSE_MAIN_STATE_IDLE; pauseCtx->mode = 0; pauseCtx->pageIndex = PAUSE_ITEM; |
