mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-12-19 22:42:46 +00:00
Command_ExitGame_f: Return to title if restoreMenu is NULL
This commit is contained in:
parent
59f9609160
commit
84a98475ff
1 changed files with 9 additions and 2 deletions
|
|
@ -5784,8 +5784,15 @@ void Command_ExitGame_f(void)
|
||||||
|
|
||||||
if (!modeattacking)
|
if (!modeattacking)
|
||||||
{
|
{
|
||||||
D_ClearState();
|
if (restoreMenu == NULL)
|
||||||
M_StartControlPanel();
|
{
|
||||||
|
D_StartTitle();
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
D_ClearState();
|
||||||
|
M_StartControlPanel();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue