diff options
author | Torbjörn Andersson | 2005-01-05 07:13:15 +0000 |
---|---|---|
committer | Torbjörn Andersson | 2005-01-05 07:13:15 +0000 |
commit | 935f320e1ad51f0273edfa2b94d70e45c215ebda (patch) | |
tree | c24e723a997249d47d11b3902c358c2dacef1470 | |
parent | 41b914e773da70b17b83eec69bfb9c2a14ea13f8 (diff) | |
download | scummvm-rg350-935f320e1ad51f0273edfa2b94d70e45c215ebda.tar.gz scummvm-rg350-935f320e1ad51f0273edfa2b94d70e45c215ebda.tar.bz2 scummvm-rg350-935f320e1ad51f0273edfa2b94d70e45c215ebda.zip |
Fixed bad speech/script regression.
svn-id: r16436
-rw-r--r-- | saga/sthread.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/saga/sthread.cpp b/saga/sthread.cpp index 378633102d..3b925f16c0 100644 --- a/saga/sthread.cpp +++ b/saga/sthread.cpp @@ -773,6 +773,7 @@ void Script::runThread(SCRIPT_THREAD *thread, int instr_limit) { if (!(speechFlags & kSpeakAsync)) { thread->wait(kWaitTypeSpeech); + thread->i_offset = scriptS.pos(); return; } } |