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;
|
||||
return;
|
||||
}
|
||||
else if (choice == KEY_DEL)
|
||||
|
||||
M_StopMessage(0);
|
||||
stopstopmessage = true;
|
||||
|
||||
if (choice == KEY_DEL)
|
||||
{
|
||||
M_StopMessage(0);
|
||||
if (FIL_FileExists(liveeventbackup)) // just in case someone deleted it while we weren't looking.
|
||||
remove(liveeventbackup);
|
||||
BwehHehHe();
|
||||
M_StartMessage("Live event backup erased.\n",M_Marathon,MM_NOTHING);
|
||||
stopstopmessage = true;
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue