diff options
-rw-r--r-- | scumm/script_v100he.cpp | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/scumm/script_v100he.cpp b/scumm/script_v100he.cpp index 631e31d18d..ccb903cc0a 100644 --- a/scumm/script_v100he.cpp +++ b/scumm/script_v100he.cpp @@ -52,8 +52,8 @@ void ScummEngine_v100he::setupOpcodes() { OPCODE(o6_breakHere), /* 08 */ OPCODE(o6_delayFrames), - OPCODE(o6_invalid), - OPCODE(o6_invalid), + OPCODE(o90_shl), + OPCODE(o90_shr), OPCODE(o6_invalid), /* 0C */ OPCODE(o6_setCameraAt), @@ -452,6 +452,10 @@ void ScummEngine_v100he::o100_actorOps() { case 27: // SO_DEFAULT a->initActor(0); break; + case 32: + i = pop(); + debug(1,"o100_actorOps: case 32 (%d)", i); + break; case 52: // SO_ACTOR_NAME copyScriptString(string); loadPtrToResource(rtActorName, a->number, string); |