mirror of
https://github.com/libretro/scummvm.git
synced 2025-02-02 00:42:24 +00:00
fix by hibernatus
svn-id: r10725
This commit is contained in:
parent
251c89b037
commit
87d97ead35
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user