From 9aadb2726732e1fcd517088bdcaff60a8a49710d Mon Sep 17 00:00:00 2001 From: Kawa Date: Sun, 23 Jun 2019 00:46:53 +0200 Subject: SCI: Add some more SCI11+ features Also gate them behind the presence of a 184.VOC resource instead of GID_CATDATE. This should not matter with regards to the remap effects -- the 2015 and 2016 demos had none, and the first that did has an unknown release status. Only the 2017 demo would fall, which would be easily fixed by dropping in a valid 184.VOC patch file.--- engines/sci/sci.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'engines/sci/sci.cpp') diff --git a/engines/sci/sci.cpp b/engines/sci/sci.cpp index 01d44da025..428c914a0d 100644 --- a/engines/sci/sci.cpp +++ b/engines/sci/sci.cpp @@ -590,7 +590,7 @@ void SciEngine::initGraphics() { } else { #endif _gfxPalette16 = new GfxPalette(_resMan, _gfxScreen); - if (getGameId() == GID_QFG4DEMO || getGameId() == GID_CATDATE) + if (getGameId() == GID_QFG4DEMO || _resMan->testResource(ResourceId(kResourceTypeVocab, 184))) _gfxRemap16 = new GfxRemap(_gfxPalette16); #ifdef ENABLE_SCI32 } -- cgit v1.2.3