- Blood: When starting a new game, reset the global flag immediately.

Otherwise the game can get stuck in an endless loop when trying to set up a level.
Fixes 168.
This commit is contained in:
Christoph Oelckers 2020-08-12 01:16:29 +02:00
parent 57edd370a7
commit 05fbfa3f25

View file

@ -888,7 +888,7 @@ static void commonTicker(bool &playvideo)
}
if (gStartNewGame)
{
gStartNewGame = false;
auto completion = [](bool = false)
{
StartLevel(&gGameOptions);