Skip to content

Commit

Permalink
SHERLOCK: Add missing OP_END_TEXT_WINDOW opcode
Browse files Browse the repository at this point in the history
  • Loading branch information
dreammaster committed Jun 7, 2015
1 parent a066d27 commit 9ce6dc7
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 2 additions & 1 deletion engines/sherlock/scalpel/scalpel_talk.cpp
Expand Up @@ -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
};

/*----------------------------------------------------------------*/
Expand Down
3 changes: 2 additions & 1 deletion engines/sherlock/talk.h
Expand Up @@ -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 };
Expand Down
3 changes: 2 additions & 1 deletion engines/sherlock/tattoo/tattoo_talk.cpp
Expand Up @@ -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
};

/*----------------------------------------------------------------*/
Expand Down

0 comments on commit 9ce6dc7

Please sign in to comment.