mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-23 02:44:56 +00:00
I had this wrong way around.
svn-id: r10691
This commit is contained in:
parent
e3a72b5149
commit
94be874b70
@ -2113,7 +2113,7 @@ void Gdi::unkDecode10(byte *dst, const byte *src, int height) {
|
||||
for (;;) {
|
||||
byte color = *src++;
|
||||
if (color < numcolors) {
|
||||
*dst = local_palette[_vm->_roomPalette[color]];
|
||||
*dst = _vm->_roomPalette[local_palette[color]];
|
||||
NEXT_ROW;
|
||||
} else {
|
||||
uint run = color - numcolors + 1;
|
||||
|
Loading…
x
Reference in New Issue
Block a user