diff options
-rw-r--r-- | scumm/script_v2.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scumm/script_v2.cpp b/scumm/script_v2.cpp index 5d803e16ab..23bee0217c 100644 --- a/scumm/script_v2.cpp +++ b/scumm/script_v2.cpp @@ -826,12 +826,12 @@ void Scumm_v2::o2_doSentence() { SentenceTab *st; a = getVarOrDirectByte(0x80); - if (a == 0xFB) { + if (a == 0xFC) { _sentenceNum = 0; stopScript(SENTENCE_SCRIPT); return; } - if (a == 0xFC) { + if (a == 0xFB) { resetSentence(); return; } |