aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--engines/sherlock/scalpel/scalpel_talk.cpp3
-rw-r--r--engines/sherlock/talk.h3
-rw-r--r--engines/sherlock/tattoo/tattoo_talk.cpp3
3 files changed, 6 insertions, 3 deletions
diff --git a/engines/sherlock/scalpel/scalpel_talk.cpp b/engines/sherlock/scalpel/scalpel_talk.cpp
index 0ad162e160..217ed9b2a4 100644
--- a/engines/sherlock/scalpel/scalpel_talk.cpp
+++ b/engines/sherlock/scalpel/scalpel_talk.cpp
@@ -98,7 +98,8 @@ const byte SCALPEL_OPCODES[] = {
0, // OP_RESTORE_PEOPLE_SEQUENCE
0, // OP_NPC_VERB_TARGET
0, // OP_TURN_SOUNDS_OFF
- 0 // OP_NULL
+ 0, // OP_NULL
+ 0 // OP_END_TEXT_WINDOW
};
/*----------------------------------------------------------------*/
diff --git a/engines/sherlock/talk.h b/engines/sherlock/talk.h
index 190224b281..c6fda0b5d7 100644
--- a/engines/sherlock/talk.h
+++ b/engines/sherlock/talk.h
@@ -106,7 +106,8 @@ enum {
OP_RESTORE_PEOPLE_SEQUENCE = 64,
OP_NPC_VERB_TARGET = 65,
OP_TURN_SOUNDS_OFF = 66,
- OP_NULL = 67
+ OP_NULL = 67,
+ OP_END_TEXT_WINDOW = 68
};
enum OpcodeReturn { RET_EXIT = -1, RET_SUCCESS = 0, RET_CONTINUE = 1 };
diff --git a/engines/sherlock/tattoo/tattoo_talk.cpp b/engines/sherlock/tattoo/tattoo_talk.cpp
index 78cc593cd7..91c6f251f5 100644
--- a/engines/sherlock/tattoo/tattoo_talk.cpp
+++ b/engines/sherlock/tattoo/tattoo_talk.cpp
@@ -103,7 +103,8 @@ const byte TATTOO_OPCODES[] = {
224, // OP_RESTORE_PEOPLE_SEQUENCE
226, // OP_NPC_VERB_TARGET
227, // OP_TURN_SOUNDS_OFF
- 225 // OP_NULL
+ 225, // OP_NULL
+ 203 // OP_END_TEXT_WINDOW
};
/*----------------------------------------------------------------*/