- Blood does not restart the intro sequence.

Fixes #247
This commit is contained in:
Christoph Oelckers 2020-08-25 18:06:16 +02:00
parent a0e4d6f62c
commit ce853c5376
1 changed files with 6 additions and 1 deletions

View File

@ -891,7 +891,12 @@ static void commonTicker()
gRestartGame = 0;
// Don't switch to startup if we're already outside the game.
if (gamestate == GS_LEVEL) gamestate = GS_STARTUP;
if (gamestate == GS_LEVEL)
{
gamestate = GS_MENUSCREEN;
M_StartControlPanel(false);
M_SetMenu(NAME_Mainmenu);
}
}
}