diff options
author | Paul Gilbert | 2015-06-07 16:59:56 -0400 |
---|---|---|
committer | Paul Gilbert | 2015-06-07 16:59:56 -0400 |
commit | 9ce6dc72d35ba1339a37f8700e2608bc7440b900 (patch) | |
tree | 6f706f3a9db96e6fd16eb69d35d37dd7c59bbb8e /engines | |
parent | a066d27aeef2ef37be710dd9d160da08acfff0c7 (diff) | |
download | scummvm-rg350-9ce6dc72d35ba1339a37f8700e2608bc7440b900.tar.gz scummvm-rg350-9ce6dc72d35ba1339a37f8700e2608bc7440b900.tar.bz2 scummvm-rg350-9ce6dc72d35ba1339a37f8700e2608bc7440b900.zip |
SHERLOCK: Add missing OP_END_TEXT_WINDOW opcode
Diffstat (limited to 'engines')
-rw-r--r-- | engines/sherlock/scalpel/scalpel_talk.cpp | 3 | ||||
-rw-r--r-- | engines/sherlock/talk.h | 3 | ||||
-rw-r--r-- | engines/sherlock/tattoo/tattoo_talk.cpp | 3 |
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 }; /*----------------------------------------------------------------*/ |