Sync menu_helpers.c

This commit is contained in:
GriffinR
2022-11-11 11:56:59 -05:00
parent 5b2479b7d7
commit 092f19f323
14 changed files with 94 additions and 99 deletions
+2 -2
View File
@@ -12,7 +12,7 @@
#include "gba/m4a_internal.h"
// can't include the one in menu_helpers.h since Task_OptionMenu needs bool32 for matching
bool32 MenuHelpers_CallLinkSomething(void);
bool32 IsActiveOverworldLinkBusy(void);
// Menu items
enum
@@ -371,7 +371,7 @@ static void Task_OptionMenu(u8 taskId)
sOptionMenuPtr->loadState++;
break;
case 2:
if (((bool32)MenuHelpers_CallLinkSomething()) == TRUE)
if (((bool32)IsActiveOverworldLinkBusy()) == TRUE)
break;
switch (OptionMenu_ProcessInput())
{