mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2025-02-18 01:21:32 +00:00
- fixed: IfGame else branch was ignored in MENUDEF
https://forum.zdoom.org/viewtopic.php?t=66282
This commit is contained in:
parent
077d4e08bb
commit
be8009d9ca
1 changed files with 1 additions and 1 deletions
|
@ -203,7 +203,7 @@ static bool CheckSkipGameBlock(FScanner &sc)
|
||||||
if (!filter)
|
if (!filter)
|
||||||
{
|
{
|
||||||
SkipSubBlock(sc);
|
SkipSubBlock(sc);
|
||||||
return true;
|
return !sc.CheckString("else");
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue