Fix room colors in v1 zak

svn-id: r9869
This commit is contained in:
Travis Howell 2003-08-26 15:56:37 +00:00
parent fda7df57fa
commit 63e89e5882
2 changed files with 14 additions and 3 deletions

View file

@ -1333,8 +1333,14 @@ void Scumm_v2::o2_roomOps() {
VAR(VAR_CAMERA_MAX_X) = b;
break;
case 2: /* room color */
_shadowPalette[b] = a;
_fullRedraw = true;
if (_version == 1) {
_shadowPalette[0] = 255;
_shadowPalette[1] = a;
_shadowPalette[2] = b;
} else {
_shadowPalette[b] = a;
_fullRedraw = true;
}
break;
}
}