diff options
Diffstat (limited to 'engines')
-rw-r--r-- | engines/draci/script.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/draci/script.cpp b/engines/draci/script.cpp index 690d7d45cd..68638ad15b 100644 --- a/engines/draci/script.cpp +++ b/engines/draci/script.cpp @@ -638,8 +638,8 @@ int Script::handleMathExpression(Common::MemoryReadStream &reader) { case kMathOperator: value = reader.readSint16LE(); - arg1 = stk.pop(); arg2 = stk.pop(); + arg1 = stk.pop(); // Fetch operator oper = _operatorList[value-1]; |