1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-01-30 09:15:38 +00:00

allow lines to continue with other instructions after an legit else

This commit is contained in:
Marc Zinnschlag 2014-02-13 08:38:26 +01:00
parent 749136bf33
commit 2eeb0eb4f3

View file

@ -72,7 +72,7 @@ namespace Compiler
}
else if (keyword==Scanner::K_else)
{
mState = IfElseEndState;
mState = IfElseBodyState; /// \todo should be IfElseEndState; add an option for that
}
return true;