mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-01-19 16:01:35 +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;
|
marathonmode = 0;
|
||||||
return;
|
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.
|
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…
Reference in a new issue