Add some missing code for HE100.

Cleanup

svn-id: r15494
This commit is contained in:
Travis Howell 2004-10-10 01:52:35 +00:00
parent 873fecd67d
commit 8df034b6ac
8 changed files with 154 additions and 85 deletions

View file

@ -595,10 +595,10 @@ void ScummEngine_v60he::o60_actorOps() {
Actor *a;
int i, j, k;
int args[8];
byte b;
byte subOp;
b = fetchScriptByte();
if (b == 197) {
subOp = fetchScriptByte();
if (subOp == 197) {
_curActor = pop();
return;
}
@ -607,7 +607,7 @@ void ScummEngine_v60he::o60_actorOps() {
if (!a)
return;
switch (b) {
switch (subOp) {
case 30:
// _heversion >= 70
_actorClipOverride.bottom = pop();
@ -762,7 +762,7 @@ void ScummEngine_v60he::o60_actorOps() {
break;
}
default:
error("o60_actorOps: default case %d", b);
error("o60_actorOps: default case %d", subOp);
}
}