Fixed softlock when pressing the start button while in link room

This commit is contained in:
Eduardo Quezada D'Ottone 2022-02-21 20:29:46 -03:00
parent df8dfd9a65
commit 224b9a1549

View file

@ -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)