aboutsummaryrefslogtreecommitdiff
path: root/scumm/script_v2.cpp
diff options
context:
space:
mode:
authorTravis Howell2003-05-21 04:09:20 +0000
committerTravis Howell2003-05-21 04:09:20 +0000
commitec46d2f8538aa58eb646f5a543de11072493d3ac (patch)
tree4287fd7ff1c19a9100022be51b07a701a5a1eb33 /scumm/script_v2.cpp
parent27b7c1287e2c712e444b643b46f092c94c42ae58 (diff)
downloadscummvm-rg350-ec46d2f8538aa58eb646f5a543de11072493d3ac.tar.gz
scummvm-rg350-ec46d2f8538aa58eb646f5a543de11072493d3ac.tar.bz2
scummvm-rg350-ec46d2f8538aa58eb646f5a543de11072493d3ac.zip
Add Zak v2 doSentence fix, patch #740878
svn-id: r7760
Diffstat (limited to 'scumm/script_v2.cpp')
-rw-r--r--scumm/script_v2.cpp4
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;
}