Merge pull request #14 from AsparagusEduardo/PR_debugMenu_softlock

Fixed softlock when pressing the start button while in link room
This commit is contained in:
TheXaman 2022-02-22 11:55:19 +01:00 committed by GitHub
commit 3e2cb0fa6a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -283,14 +283,10 @@ static void BuildStartMenuActions(void)
{
BuildMultiPartnerRoomStartMenu();
}
#ifdef TX_DEBUGGING
if (TX_DEBUG_MENU_OPTION)
{
BuildDebugStartMenu();
}
#if defined(TX_DEBUGGING) && TX_DEBUG_MENU_OPTION
else
{
BuildNormalStartMenu();
BuildDebugStartMenu();
}
#else
else