diff options
author | GriffinR <griffin.g.richards@gmail.com> | 2022-02-27 13:47:50 -0500 |
---|---|---|
committer | GriffinR <griffin.g.richards@gmail.com> | 2022-02-27 13:47:50 -0500 |
commit | 36e5d5e759d32e4987ffbbac70f84978e1893d16 (patch) | |
tree | bed989c7f5cd4c87047b64c0c893fd8c76add77b /src/main_menu.c | |
parent | eca5233abe83a074ce97f9e47b30eb0c0f430a9e (diff) |
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); } |