aboutsummaryrefslogtreecommitdiff
path: root/scumm/script_v72he.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'scumm/script_v72he.cpp')
-rw-r--r--scumm/script_v72he.cpp23
1 files changed, 1 insertions, 22 deletions
diff --git a/scumm/script_v72he.cpp b/scumm/script_v72he.cpp
index 99b52eac55..011b6cc512 100644
--- a/scumm/script_v72he.cpp
+++ b/scumm/script_v72he.cpp
@@ -81,7 +81,7 @@ void ScummEngine_v72he::setupOpcodes() {
OPCODE(o6_pop),
OPCODE(o72_compareStackList),
/* 1C */
- OPCODE(o72_unknown1C),
+ OPCODE(o6_invalid),
OPCODE(o6_invalid),
OPCODE(o6_invalid),
OPCODE(o6_invalid),
@@ -616,27 +616,6 @@ void ScummEngine_v72he::o72_compareStackList() {
}
}
-void ScummEngine_v72he::o72_unknown1C() {
- // HE 90+ specific
- if (_heversion < 90)
- error("Invalid opcode '%x' at %x", _opcode, _scriptPointer - _scriptOrgPointer);
-
- // For Pajame Sam 2 demo
- // Incomplete
- int value = fetchScriptByte();
- value -= 46;
-
- if (value == 10) {
- pop();
- pop();
- pop();
- pop();
- pop();
- }
-
- warning("o72_unknown1C stub (%d)", value);
-}
-
void ScummEngine_v72he::o72_wordArrayWrite() {
int a = pop();
writeArray(fetchScriptWord(), 0, pop(), a);