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 2503f0b034..cba0ebeb65 100644 --- a/scumm/gfx.cpp +++ b/scumm/gfx.cpp @@ -1067,7 +1067,7 @@ void Gdi::decodeStripEGA(byte *dst, byte *src, int height) { } } if (color != 0xff) { - *dst++ = color; + *dst = color; *(dst + 1) = color2; dst += _vm->_realWidth; } |