From a4ef3f9d7305783a3cc8068cb5dbc978a7f22f1c Mon Sep 17 00:00:00 2001 From: Filippos Karapetis Date: Mon, 13 Jun 2016 12:00:43 +0300 Subject: SCI32: All versions of KQ7 are using the older remap range semantics --- engines/sci/graphics/remap.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'engines') diff --git a/engines/sci/graphics/remap.cpp b/engines/sci/graphics/remap.cpp index 6f9b96a1aa..ff49e52f13 100644 --- a/engines/sci/graphics/remap.cpp +++ b/engines/sci/graphics/remap.cpp @@ -117,8 +117,9 @@ GfxRemap32::GfxRemap32(GfxPalette32 *palette) : _palette(palette) { _update = false; _remapCount = 0; - // The remap range was 245 - 254 in SCI2, but was changed to 235 - 244 in SCI21 middle - _remapEndColor = (getSciVersion() >= SCI_VERSION_2_1_MIDDLE) ? 244 : 254; + // The remap range was 245 - 254 in SCI2, but was changed to 235 - 244 in SCI21 middle. + // All versions of KQ7 are using the older remap range semantics. + _remapEndColor = (getSciVersion() >= SCI_VERSION_2_1_MIDDLE || g_sci->getGameId() == GID_KQ7) ? 244 : 254; } void GfxRemap32::remapOff(byte color) { -- cgit v1.2.3