I had this wrong way around.

svn-id: r10691
This commit is contained in:
Travis Howell 2003-10-09 05:44:46 +00:00
parent e3a72b5149
commit 94be874b70

View File

@ -2113,7 +2113,7 @@ void Gdi::unkDecode10(byte *dst, const byte *src, int height) {
for (;;) {
byte color = *src++;
if (color < numcolors) {
*dst = local_palette[_vm->_roomPalette[color]];
*dst = _vm->_roomPalette[local_palette[color]];
NEXT_ROW;
} else {
uint run = color - numcolors + 1;