diff options
| author | Rangi <remy.oukaour+rangi42@gmail.com> | 2018-02-25 22:23:20 -0500 |
|---|---|---|
| committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2018-02-25 22:23:20 -0500 |
| commit | b254a4571d4db54e4fdf15302788acc47d0de08c (patch) | |
| tree | 821b5b4649884e58c1991a339a6b44f02b6da221 /engine | |
| parent | 2f9a0d7d9f3e2ee0f1db0ef25cd47803bc0efdf6 (diff) | |
ENGINE_BUG_CONTEST_ON -> ENGINE_MAIN_MENU_MOBILE_CHOICES (resolves #490)
Went with CHOICES instead of HIDDEN since setting the flag would presumably have shown the items, not hidden them
Diffstat (limited to 'engine')
| -rwxr-xr-x | engine/main_menu.asm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engine/main_menu.asm b/engine/main_menu.asm index b4a5d1919..d83ce873b 100755 --- a/engine/main_menu.asm +++ b/engine/main_menu.asm @@ -168,7 +168,7 @@ MainMenu_GetWhichMenu: ; 49da4 jr nz, .mystery_gift ; This check makes no difference. ld a, [wStatusFlags] - bit STATUSFLAGS_BUG_CONTEST_ON_F, a + bit STATUSFLAGS_MAIN_MENU_MOBILE_CHOICES_F, a ld a, $1 ; Continue jr z, .ok jr .ok @@ -183,7 +183,7 @@ MainMenu_GetWhichMenu: ; 49da4 .mystery_gift ; This check makes no difference. ld a, [wStatusFlags] - bit STATUSFLAGS_BUG_CONTEST_ON_F, a + bit STATUSFLAGS_MAIN_MENU_MOBILE_CHOICES_F, a jr z, .ok3 jr .ok3 |
