diff options
Diffstat (limited to 'scumm')
-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 15cedae852..57936db14d 100644 --- a/scumm/gfx.cpp +++ b/scumm/gfx.cpp @@ -2444,7 +2444,7 @@ void Gdi::drawStripEGA(byte *dst, int dstPitch, const byte *src, int height) con } for (z = 0; z < run; z++) { - *(dst + y * dstPitch + x) = *(dst + y * dstPitch + x - 1) + _paletteMod; + *(dst + y * dstPitch + x) = *(dst + y * dstPitch + x - 1); y++; if (y >= height) { |