mirror of
https://github.com/ZDoom/raze-gles.git
synced 2025-01-16 12:40:38 +00:00
- 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:
parent
57edd370a7
commit
05fbfa3f25
1 changed files with 1 additions and 1 deletions
|
@ -888,7 +888,7 @@ static void commonTicker(bool &playvideo)
|
||||||
}
|
}
|
||||||
if (gStartNewGame)
|
if (gStartNewGame)
|
||||||
{
|
{
|
||||||
|
gStartNewGame = false;
|
||||||
auto completion = [](bool = false)
|
auto completion = [](bool = false)
|
||||||
{
|
{
|
||||||
StartLevel(&gGameOptions);
|
StartLevel(&gGameOptions);
|
||||||
|
|
Loading…
Reference in a new issue