diff options
-rw-r--r-- | scumm/gfx.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/gfx.cpp b/scumm/gfx.cpp index dbd59c8ab7..dd9605f5b5 100644 --- a/scumm/gfx.cpp +++ b/scumm/gfx.cpp @@ -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; |