M_StartControlPanel: Do not activate if map change is pending

Prevents restoreMenu being burned when pressing start during long GP/Match Race fade.
This commit is contained in:
toaster 2023-02-05 14:09:30 +00:00
parent de526a7889
commit 63fbdcfbc0

View file

@ -443,7 +443,7 @@ void M_StartControlPanel(void)
}
// intro might call this repeatedly
if (menuactive && gamestate != GS_NULL)
if (mapchangepending || (menuactive && gamestate != GS_NULL))
{
CON_ToggleOff(); // move away console
return;