diff options
author | GriffinR <griffin.g.richards@gmail.com> | 2022-02-28 01:49:09 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-28 01:49:09 -0500 |
commit | 2142ad96d54a4d4ba4c76a359960cbba75b8b923 (patch) | |
tree | 8612d05aa387768ad52c7c735fe449f209656210 /src/main_menu.c | |
parent | 6262080e9cbdd3633a61c2723d4fe1ef4bfe9a91 (diff) | |
parent | 3d0663fe811cdd01010b391b88423f91387f89e1 (diff) |
Merge pull request #1638 from GriffinRichards/menu-arr-count
Add missing menu array counts
Diffstat (limited to 'src/main_menu.c')
-rw-r--r-- | src/main_menu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main_menu.c b/src/main_menu.c index 54a4f6891..ed6158a9c 100644 --- a/src/main_menu.c +++ b/src/main_menu.c @@ -2090,7 +2090,7 @@ static void NewGameBirchSpeech_ShowGenderMenu(void) DrawMainMenuWindowBorder(&gNewGameBirchSpeechTextWindows[1], 0xF3); FillWindowPixelBuffer(1, PIXEL_FILL(1)); PrintMenuTable(1, ARRAY_COUNT(sMenuActions_Gender), sMenuActions_Gender); - InitMenuInUpperLeftCornerNormal(1, 2, 0); + InitMenuInUpperLeftCornerNormal(1, ARRAY_COUNT(sMenuActions_Gender), 0); PutWindowTilemap(1); CopyWindowToVram(1, COPYWIN_FULL); } |