1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-07-22 04:14:04 +00:00

ignore stray string argument after GetDisabled

This commit is contained in:
Marc Zinnschlag 2014-07-17 11:29:04 +02:00
parent dba6a9ebff
commit 35b27ea8cb

View file

@ -386,6 +386,9 @@ namespace Compiler
mExplicit.clear(); mExplicit.clear();
mRefOp = false; mRefOp = false;
std::vector<Interpreter::Type_Code> ignore;
parseArguments ("x", scanner, ignore);
mNextOperand = false; mNextOperand = false;
return true; return true;
} }
@ -527,6 +530,9 @@ namespace Compiler
Generator::getDisabled (mCode, mLiterals, ""); Generator::getDisabled (mCode, mLiterals, "");
mOperands.push_back ('l'); mOperands.push_back ('l');
std::vector<Interpreter::Type_Code> ignore;
parseArguments ("x", scanner, ignore);
mNextOperand = false; mNextOperand = false;
return true; return true;
} }