diff options
-rw-r--r-- | scumm/intern.h | 1 | ||||
-rw-r--r-- | scumm/script_v6.cpp | 6 |
2 files changed, 6 insertions, 1 deletions
diff --git a/scumm/intern.h b/scumm/intern.h index f3e6f150bc..d188cd1c71 100644 --- a/scumm/intern.h +++ b/scumm/intern.h @@ -365,6 +365,7 @@ protected: void o6_unknownCD(); void o6_bor(); void o6_band(); + void o6_stopTalking(); }; class Scumm_v7 : public Scumm_v6 diff --git a/scumm/script_v6.cpp b/scumm/script_v6.cpp index 3fca8f3e66..c90242f516 100644 --- a/scumm/script_v6.cpp +++ b/scumm/script_v6.cpp @@ -304,7 +304,7 @@ void Scumm_v6::setupOpcodes() OPCODE(o6_invalid), /* D0 */ OPCODE(o6_invalid), - OPCODE(o6_invalid), + OPCODE(o6_stopTalking), OPCODE(o6_getAnimateVariable), OPCODE(o6_invalid), /* D4 */ @@ -2900,6 +2900,10 @@ void Scumm_v6::o6_unknownCD() { warning("o6_unknownCD: stub(%d, %d, %d, %d)", a, b, c, d); } +void Scumm_v6::o6_stopTalking() { + warning("o6_stopTalking: stub"); +} + void Scumm_v6::decodeParseString(int m, int n) { byte b; |