summaryrefslogtreecommitdiff
path: root/src/menu.c
diff options
context:
space:
mode:
authorProjectRevoTPP <projectrevotpp@hotmail.com>2017-01-03 03:30:20 -0500
committerYamaArashi <YamaArashi@users.noreply.github.com>2017-01-03 00:30:20 -0800
commitbdb3dea2b751e65a349ec2d637b461f39cc5ef74 (patch)
treeb9d31ad793e0f693b70b8b6749ae7d1ca2a64ff7 /src/menu.c
parent929148fb7de2eda9fee1f4611834d4dfb73c9f91 (diff)
more labels in battle_ai.c and intro.c and misc places (#151)
* make ROM match again * clean up item_use.c labels and clarify functions. * label and clarify some functions in decompress.c * label and clarify berry.c * rename 20239F8 to gBattleTypeFlags * formatting * label intro.c a bit * label battle_ai.c and document some stuff * formatting * more labeling and clarification. * more label stuff
Diffstat (limited to 'src/menu.c')
-rw-r--r--src/menu.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/menu.c b/src/menu.c
index a06463ba3..5960e2f79 100644
--- a/src/menu.c
+++ b/src/menu.c
@@ -41,7 +41,7 @@ EWRAM_DATA u16 gMenuTextWindowTileOffset = 0;
EWRAM_DATA u16 gMenuTextWindowContentTileOffset = 0;
EWRAM_DATA u16 gMenuMessageBoxContentTileOffset = 0;
-extern const struct MenuAction gUnknown_08376D74[];
+extern const struct MenuAction gMenuYesNoItems[];
void sub_8071C20(void)
{
@@ -575,7 +575,7 @@ void PrintMenuItemsReordered(u8 left, u8 top, u8 menuItemCount, const struct Men
void InitYesNoMenu(u8 left, u8 top, u8 a3)
{
- PrintMenuItems(left + 1, top + 1, 2, gUnknown_08376D74);
+ PrintMenuItems(left + 1, top + 1, 2, gMenuYesNoItems);
InitMenu(0, left + 1, top + 1, 2, 0, a3);
}