diff options
Diffstat (limited to 'scumm/script_v80he.cpp')
-rw-r--r-- | scumm/script_v80he.cpp | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/scumm/script_v80he.cpp b/scumm/script_v80he.cpp index 938a6867bf..e19c61588d 100644 --- a/scumm/script_v80he.cpp +++ b/scumm/script_v80he.cpp @@ -136,7 +136,7 @@ void ScummEngine_v80he::setupOpcodes() { OPCODE(o72_wordArrayWrite), /* 48 */ OPCODE(o6_invalid), - OPCODE(o6_invalid), + OPCODE(o80_unknown49), OPCODE(o6_invalid), OPCODE(o72_wordArrayIndexedWrite), /* 4C */ @@ -378,6 +378,14 @@ const char *ScummEngine_v80he::getOpcodeDesc(byte i) { return _opcodesV80he[i].desc; } +void ScummEngine_v80he::o80_unknown49() { + int a = pop(); + int b = pop(); + + push (0); + debug(1,"o80_unknown49 stub (%d, %d)", b, a); +} + void ScummEngine_v80he::o80_setState() { int state = pop(); int obj = pop(); |