Review comments

This commit is contained in:
Kermalis 2023-09-24 07:02:02 -04:00
parent 64e0409e08
commit e5dfd4f08a
2 changed files with 5 additions and 6 deletions

View File

@ -4,9 +4,9 @@
enum MainMenuScreens
{
MENU_MAIN_SCREEN = 1,
//
// 2
MENU_NEW_GAME = 3,
//
// 4 - 5
MENU_AWAITING_RESCUE = 6,
MENU_CONTINUE, // used by Revive Team/Continue
MENU_DELETE_SAVE_PROMPT,
@ -25,7 +25,7 @@ enum MainMenuScreens
// NOTE: 27 - 34 used by Rescue Password Menu
MENU_DISPLAY_RESCUE_PASSWORD = 33,
MENU_RESCUE_PASSWORD_ENTRY,
//
// 35 - 45
MENU_DELETE_SAVE = 46,
MENU_DEBUG_DUNGEON,
MENU_DEBUG_FIELD,
@ -33,7 +33,6 @@ enum MainMenuScreens
MENU_DEBUG_FIELD_SCRIPT,
MENU_DEBUG_DEBUG_MENU,
MENU_DEBUG_UNKNOWN_1,
//
MENU_NO_SCREEN_CHANGE = 65500 // (s16)-36
};

View File

@ -70,8 +70,8 @@ u32 sub_801E218(void)
break;
}
// == 1 is needed for matching
if (sub_80138B8(&sUnknown_203B260->input, 1) != 0 || flag == TRUE) {
// == TRUE is needed for matching
if (sub_80138B8(&sUnknown_203B260->input, 1) || flag == TRUE) {
nullsub_38();
CreateOptionsMenu();
return 1;