diff options
Diffstat (limited to 'scumm/script_v72he.cpp')
-rw-r--r-- | scumm/script_v72he.cpp | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/scumm/script_v72he.cpp b/scumm/script_v72he.cpp index 069755241f..034419908d 100644 --- a/scumm/script_v72he.cpp +++ b/scumm/script_v72he.cpp @@ -850,15 +850,20 @@ void ScummEngine_v72he::o72_actorOps() { switch (b) { case 21: - // HE 80 (Pajama Sam onwards) + // HE 80+ k = getStackList(args, ARRAYSIZE(args)); debug(1,"o72_actorOps: case 21 (%d)", k); break; case 24: - // HE 80 (Pajama Sam onwards) + // HE 80+ k = pop(); debug(1,"o72_actorOps: case 24 (%d)", k); break; + case 43: + // HE 80+ + k = pop(); + debug(1,"o72_actorOps: case 43 (%d)", k); + break; case 64: _actorClipOverride.bottom = pop(); _actorClipOverride.right = pop(); |