fix by hibernatus

svn-id: r10725
This commit is contained in:
Max Horn 2003-10-10 14:14:36 +00:00
parent 251c89b037
commit 87d97ead35

View File

@ -2072,7 +2072,7 @@ void Gdi::unkDecode9(byte *dst, const byte *src, int height) {
color += bits << i;
}
for (i = 0; i < ((c & 3) + 2); i++) {
*dst = (run * 16 + _vm->_roomPalette[color]);
*dst = _vm->_roomPalette[run * 16 + color];
NEXT_ROW;
}
break;
@ -2084,7 +2084,7 @@ void Gdi::unkDecode9(byte *dst, const byte *src, int height) {
READ_256BIT;
color += bits << j;
}
*dst = (run * 16 + _vm->_roomPalette[color]);
*dst = _vm->_roomPalette[run * 16 + color];
NEXT_ROW;
}
break;