- Recoverable errors that are caught during the demo loop no longer shut off

the menu.


SVN r1609 (trunk)
This commit is contained in:
Randy Heit 2009-05-26 01:56:35 +00:00
parent 956b7d5ea3
commit e637fe3ea7
2 changed files with 6 additions and 1 deletions

View File

@ -1,4 +1,6 @@
May 25, 2009 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 - Specifying non-existent directories with -savedir or the save_dir cvar now
attempts to create them. attempts to create them.
- I_CheckNativeMouse() now checks the foreground window to determine if the - I_CheckNativeMouse() now checks the foreground window to determine if the

View File

@ -783,7 +783,10 @@ void D_ErrorCleanup ()
playeringame[0] = 1; playeringame[0] = 1;
players[0].playerstate = PST_LIVE; players[0].playerstate = PST_LIVE;
gameaction = ga_fullconsole; gameaction = ga_fullconsole;
if (gamestate == GS_DEMOSCREEN)
{
menuactive = MENU_Off; menuactive = MENU_Off;
}
insave = false; insave = false;
} }