diff options
author | yenatch <yenatch@gmail.com> | 2017-06-14 22:01:02 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-06-14 22:01:02 -0400 |
commit | 817f20d2275d29a2d1976fa2e1281a15b0c45630 (patch) | |
tree | 91ee5276494ed423b3c3cd1344a9d0444a418dee /src/main_menu.c | |
parent | daf3212ee1f2e790441c6c4651559c8aee5472b2 (diff) | |
parent | 07080a6e5921f7844decac66ac36e2a5296ff778 (diff) |
Merge pull request #320 from ProjectRevoTPP/master
finish decompiling player_pc.c
Diffstat (limited to 'src/main_menu.c')
-rw-r--r-- | src/main_menu.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/main_menu.c b/src/main_menu.c index b2d08698b..ac26d604d 100644 --- a/src/main_menu.c +++ b/src/main_menu.c @@ -945,14 +945,14 @@ static void Task_NewGameSpeech16(u8 taskId) switch (GenderMenuProcessInput()) { case MALE: - sub_8072DEC(); + HandleDestroyMenuCursors(); PlaySE(SE_SELECT); gSaveBlock2.playerGender = MALE; MenuZeroFillWindowRect(2, 4, 8, 9); gTasks[taskId].func = Task_NewGameSpeech19; break; case FEMALE: - sub_8072DEC(); + HandleDestroyMenuCursors(); PlaySE(SE_SELECT); gSaveBlock2.playerGender = FEMALE; MenuZeroFillWindowRect(2, 4, 8, 9); @@ -1048,7 +1048,7 @@ static void Task_NewGameSpeech21(u8 taskId) case 2: case 3: case 4: - sub_8072DEC(); + HandleDestroyMenuCursors(); PlaySE(SE_SELECT); MenuZeroFillWindowRect(2, 1, 22, 12); SetPresetPlayerName(selection); @@ -1060,7 +1060,7 @@ static void Task_NewGameSpeech21(u8 taskId) gTasks[taskId].func = Task_NewGameSpeech22; break; case -1: //B button - sub_8072DEC(); + HandleDestroyMenuCursors(); PlaySE(SE_SELECT); MenuZeroFillWindowRect(2, 1, 22, 12); gTasks[taskId].func = Task_NewGameSpeech14; //Go back to gender menu |