mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Fix "press any other key" sending you to HOM hell.
This commit is contained in:
parent
af7e7bc18c
commit
e97c77fe71
1 changed files with 5 additions and 3 deletions
|
|
@ -10376,14 +10376,16 @@ static void M_MarathonLiveEventBackup(INT32 choice)
|
||||||
marathonmode = 0;
|
marathonmode = 0;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
else if (choice == KEY_DEL)
|
|
||||||
{
|
|
||||||
M_StopMessage(0);
|
M_StopMessage(0);
|
||||||
|
stopstopmessage = true;
|
||||||
|
|
||||||
|
if (choice == KEY_DEL)
|
||||||
|
{
|
||||||
if (FIL_FileExists(liveeventbackup)) // just in case someone deleted it while we weren't looking.
|
if (FIL_FileExists(liveeventbackup)) // just in case someone deleted it while we weren't looking.
|
||||||
remove(liveeventbackup);
|
remove(liveeventbackup);
|
||||||
BwehHehHe();
|
BwehHehHe();
|
||||||
M_StartMessage("Live event backup erased.\n",M_Marathon,MM_NOTHING);
|
M_StartMessage("Live event backup erased.\n",M_Marathon,MM_NOTHING);
|
||||||
stopstopmessage = true;
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue