mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-10 06:41:41 +00:00
- Recoverable errors that are caught during the demo loop no longer shut off
the menu. SVN r1609 (trunk)
This commit is contained in:
parent
956b7d5ea3
commit
e637fe3ea7
2 changed files with 6 additions and 1 deletions
|
@ -1,4 +1,6 @@
|
|||
May 25, 2009
|
||||
- Recoverable errors that are caught during the demo loop no longer shut off
|
||||
the menu.
|
||||
- Specifying non-existent directories with -savedir or the save_dir cvar now
|
||||
attempts to create them.
|
||||
- I_CheckNativeMouse() now checks the foreground window to determine if the
|
||||
|
|
|
@ -783,7 +783,10 @@ void D_ErrorCleanup ()
|
|||
playeringame[0] = 1;
|
||||
players[0].playerstate = PST_LIVE;
|
||||
gameaction = ga_fullconsole;
|
||||
menuactive = MENU_Off;
|
||||
if (gamestate == GS_DEMOSCREEN)
|
||||
{
|
||||
menuactive = MENU_Off;
|
||||
}
|
||||
insave = false;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue