- 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
commit e637fe3ea7
2 changed files with 6 additions and 1 deletions

View file

@ -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;
}