fix ega codec

svn-id: r6947
This commit is contained in:
Paweł Kołodziejski 2003-04-09 19:18:23 +00:00
parent c9b56af48b
commit 2f62d6cf4e

View File

@ -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;
}