diff options
Diffstat (limited to 'saga')
-rw-r--r-- | saga/sthread.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/saga/sthread.cpp b/saga/sthread.cpp index 1c4e0badb9..58db4d24ed 100644 --- a/saga/sthread.cpp +++ b/saga/sthread.cpp @@ -308,7 +308,7 @@ bool Script::runThread(ScriptThread *thread, uint instructionLimit) { addr = thread->baseAddress(scriptS.readByte()); iparam1 = scriptS.readSint16LE(); addr += iparam1; - *(uint16*)addr = thread->pop(); + *(uint16*)addr = thread->pop(); break; // FUNCTION CALL INSTRUCTIONS @@ -380,8 +380,9 @@ bool Script::runThread(ScriptThread *thread, uint instructionLimit) { } else { thread->pop(); //cause it 0 thread->_instructionOffset = thread->pop(); + + // Pop all the call parameters off the stack iparam1 = thread->pop(); - iparam1 += iparam1; while (iparam1--) { thread->pop(); } |