aboutsummaryrefslogtreecommitdiff
path: root/scumm
diff options
context:
space:
mode:
authorMax Horn2003-05-28 13:28:43 +0000
committerMax Horn2003-05-28 13:28:43 +0000
commit8d4b2bbf73867900db3bf767877bd7d6ea23f1ab (patch)
tree0cd0a86d1e8993a98b2b00d5d90b66c9cd35c537 /scumm
parent383918313d06b60ce0dbee77fa3478fe2908bc97 (diff)
downloadscummvm-rg350-8d4b2bbf73867900db3bf767877bd7d6ea23f1ab.tar.gz
scummvm-rg350-8d4b2bbf73867900db3bf767877bd7d6ea23f1ab.tar.bz2
scummvm-rg350-8d4b2bbf73867900db3bf767877bd7d6ea23f1ab.zip
fixed o2_waitForSentence
svn-id: r8047
Diffstat (limited to 'scumm')
-rw-r--r--scumm/script_v2.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/script_v2.cpp b/scumm/script_v2.cpp
index 3939859111..005dd38078 100644
--- a/scumm/script_v2.cpp
+++ b/scumm/script_v2.cpp
@@ -658,7 +658,7 @@ void Scumm_v2::o2_waitForMessage() {
}
void Scumm_v2::o2_waitForSentence() {
- if (_sentenceNum && !isScriptInUse(SENTENCE_SCRIPT))
+ if (!_sentenceNum && !isScriptInUse(SENTENCE_SCRIPT))
return;
_scriptPointer--;