mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-04-27 04:21:47 +00:00
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:
parent
de526a7889
commit
63fbdcfbc0
1 changed files with 1 additions and 1 deletions
|
|
@ -443,7 +443,7 @@ void M_StartControlPanel(void)
|
||||||
}
|
}
|
||||||
|
|
||||||
// intro might call this repeatedly
|
// intro might call this repeatedly
|
||||||
if (menuactive && gamestate != GS_NULL)
|
if (mapchangepending || (menuactive && gamestate != GS_NULL))
|
||||||
{
|
{
|
||||||
CON_ToggleOff(); // move away console
|
CON_ToggleOff(); // move away console
|
||||||
return;
|
return;
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue