Add missing roomOps case for HE games.

svn-id: r15404
This commit is contained in:
Travis Howell 2004-10-04 04:04:37 +00:00
parent 4364606894
commit db63483001
9 changed files with 31 additions and 22 deletions

View file

@ -535,7 +535,7 @@ void ScummEngine_v60he::o60_roomOps() {
case 213: // SO_ROOM_NEW_PALETTE
a = pop();
setPalette(a);
setPalette(a, _roomResource);
break;
case 220:
a = pop();
@ -558,7 +558,7 @@ void ScummEngine_v60he::o60_roomOps() {
case 236: // HE 7.2
b = pop();
a = pop();
warning("o60_roomOps: case %d (%d, %d)", op, b, a);
setPalette(a, b);
break;
default:
error("o60_roomOps: default case %d", op);