diff options
Diffstat (limited to 'scumm/gfx.cpp')
-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 95b9eff0d4..fc6280531f 100644 --- a/scumm/gfx.cpp +++ b/scumm/gfx.cpp @@ -1025,7 +1025,7 @@ bool Gdi::decompressBitmap(byte *bgbak_ptr, byte *smap_ptr, int numLinesToProces byte code = *smap_ptr++; assert(numLinesToProcess); - if (_vm->_features & GF_AMIGA) + if ((_vm->_features & GF_AMIGA) || (_vm->_features & GF_16COLOR)) _palette_mod = 16; else _palette_mod = 0; |