From ce853c53765e6a67fc18d1540ed3bd577681e17e Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Tue, 25 Aug 2020 18:06:16 +0200 Subject: [PATCH] - Blood does not restart the intro sequence. Fixes #247 --- source/blood/src/blood.cpp | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/source/blood/src/blood.cpp b/source/blood/src/blood.cpp index ea8738da3..43f0e7f1b 100644 --- a/source/blood/src/blood.cpp +++ b/source/blood/src/blood.cpp @@ -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); + } } }