diff options
-rw-r--r-- | engines/scumm/gfx.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/scumm/gfx.cpp b/engines/scumm/gfx.cpp index b355b29eed..14ee5db0c9 100644 --- a/engines/scumm/gfx.cpp +++ b/engines/scumm/gfx.cpp @@ -2859,7 +2859,7 @@ void Gdi::drawStripRaw(byte *dst, int dstPitch, const byte *src, int height, con uint h = height; x = 8; for (;;) { - *dst = *src++; + *dst = _roomPalette[*src++]; NEXT_ROW; } } else { |