0
0
Fork 0
mirror of https://github.com/ZDoom/raze-gles.git synced 2025-01-25 16:31:19 +00:00

- Blood does not restart the intro sequence.

Fixes 
This commit is contained in:
Christoph Oelckers 2020-08-25 18:06:16 +02:00
parent a0e4d6f62c
commit ce853c5376

View file

@ -891,7 +891,12 @@ static void commonTicker()
gRestartGame = 0; gRestartGame = 0;
// Don't switch to startup if we're already outside the game. // 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);
}
} }
} }