Fix room palette issues in small_header games.

Fix is only for EGA games so far.

svn-id: r9873
This commit is contained in:
Travis Howell 2003-08-27 01:12:18 +00:00
parent 6969357505
commit 06d07054c3
7 changed files with 31 additions and 17 deletions

View file

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