mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-01-19 07:51:43 +00:00
Fix "press any other key" sending you to HOM hell.
This commit is contained in:
parent
271c6d354b
commit
f06206cd5f
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…
Reference in a new issue