diff options
| author | Archez <Archez@users.noreply.github.com> | 2025-02-25 03:13:17 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-02-25 09:13:17 +0100 |
| commit | f023a46a5d5ef8e969427dbd694366f06fb078b7 (patch) | |
| tree | 9616c4931ba0cab38cb6012a2e5efc7c1bb8fe53 /soh/src/code/z_construct.c | |
| parent | 51310db68fc66725f5720e6d7aa7dcda0b17b8fc (diff) | |
Use gamemode enum (#5089)
* Use gamemode enum
* update console command for file_select
Diffstat (limited to 'soh/src/code/z_construct.c')
| -rw-r--r-- | soh/src/code/z_construct.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/soh/src/code/z_construct.c b/soh/src/code/z_construct.c index 960088cba..065c6f413 100644 --- a/soh/src/code/z_construct.c +++ b/soh/src/code/z_construct.c @@ -479,7 +479,7 @@ void Regs_InitDataImpl(void) { WREG(94) = 3; WREG(95) = 6; - if (gSaveContext.gameMode == 0) { + if (gSaveContext.gameMode == GAMEMODE_NORMAL) { R_TEXTBOX_X = 52; R_TEXTBOX_Y = 36; VREG(2) = 214; |
