diff options
author | Jonathan Gray | 2003-02-14 08:12:45 +0000 |
---|---|---|
committer | Jonathan Gray | 2003-02-14 08:12:45 +0000 |
commit | db0997e890de515796a3cabcb663b8d5e799a82c (patch) | |
tree | 488ef128eb1749c0822201d8e4e44ca1cf085605 | |
parent | 0e1b2479f2bf524e5b27c53d58b30ddd579f6ffe (diff) | |
download | scummvm-rg350-db0997e890de515796a3cabcb663b8d5e799a82c.tar.gz scummvm-rg350-db0997e890de515796a3cabcb663b8d5e799a82c.tar.bz2 scummvm-rg350-db0997e890de515796a3cabcb663b8d5e799a82c.zip |
add stub for o6_stopTalking
svn-id: r6606
-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; |