From 2f62d6cf4e06b5487cde48c22ddceb1ce7e89d24 Mon Sep 17 00:00:00 2001 From: Paweł Kołodziejski Date: Wed, 9 Apr 2003 19:18:23 +0000 Subject: fix ega codec svn-id: r6947 --- scumm/gfx.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- cgit v1.2.3