mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-12-18 05:52:48 +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)
|
||||
{
|
||||
D_ClearState();
|
||||
M_StartControlPanel();
|
||||
if (restoreMenu == NULL)
|
||||
{
|
||||
D_StartTitle();
|
||||
}
|
||||
else
|
||||
{
|
||||
D_ClearState();
|
||||
M_StartControlPanel();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue