forked from mirror/openmw-tes3mp
ignore stray string argument after GetDisabled
This commit is contained in:
parent
dba6a9ebff
commit
35b27ea8cb
1 changed files with 6 additions and 0 deletions
|
@ -386,6 +386,9 @@ namespace Compiler
|
|||
mExplicit.clear();
|
||||
mRefOp = false;
|
||||
|
||||
std::vector<Interpreter::Type_Code> ignore;
|
||||
parseArguments ("x", scanner, ignore);
|
||||
|
||||
mNextOperand = false;
|
||||
return true;
|
||||
}
|
||||
|
@ -527,6 +530,9 @@ namespace Compiler
|
|||
Generator::getDisabled (mCode, mLiterals, "");
|
||||
mOperands.push_back ('l');
|
||||
|
||||
std::vector<Interpreter::Type_Code> ignore;
|
||||
parseArguments ("x", scanner, ignore);
|
||||
|
||||
mNextOperand = false;
|
||||
return true;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue