Fixed softlock when pressing the start button while in link room
This commit is contained in:
parent
df8dfd9a65
commit
224b9a1549
1 changed files with 11 additions and 15 deletions
|
@ -283,21 +283,17 @@ static void BuildStartMenuActions(void)
|
|||
{
|
||||
BuildMultiPartnerRoomStartMenu();
|
||||
}
|
||||
#ifdef TX_DEBUGGING
|
||||
if (TX_DEBUG_MENU_OPTION)
|
||||
{
|
||||
BuildDebugStartMenu();
|
||||
}
|
||||
else
|
||||
{
|
||||
BuildNormalStartMenu();
|
||||
}
|
||||
#else
|
||||
else
|
||||
{
|
||||
BuildNormalStartMenu();
|
||||
}
|
||||
#endif
|
||||
#if defined(TX_DEBUGGING) && TX_DEBUG_MENU_OPTION
|
||||
else
|
||||
{
|
||||
BuildDebugStartMenu();
|
||||
}
|
||||
#else
|
||||
else
|
||||
{
|
||||
BuildNormalStartMenu();
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
static void AddStartMenuAction(u8 action)
|
||||
|
|
Loading…
Reference in a new issue