From 233f81c5e1946a49da240a44b510a8b0710f4aad Mon Sep 17 00:00:00 2001 From: Filippos Karapetis Date: Fri, 29 Jan 2010 16:25:18 +0000 Subject: [PATCH] Added support for the hires graphic resources of the Windows version of GK1 svn-id: r47673 --- engines/sci/resource.cpp | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/engines/sci/resource.cpp b/engines/sci/resource.cpp index 44aac61e5f7..5d86506dd1a 100644 --- a/engines/sci/resource.cpp +++ b/engines/sci/resource.cpp @@ -399,12 +399,10 @@ int ResourceManager::addAppropriateSources() { } #ifdef ENABLE_SCI32 - /* - // TODO: not working yet - if (Common::File::exists("RESOURCE.ALT")) { // GK1CD hires content - addSource(addExternalMap("RESOURCE.MAP", 10), kSourceVolume, "RESOURCE.ALT", 10); + // GK1CD hires content + if (Common::File::exists("ALT.MAP") && Common::File::exists("RESOURCE.ALT")) { + addSource(addExternalMap("ALT.MAP", 10), kSourceVolume, "RESOURCE.ALT", 10); } - */ } else { // SCI2.1-SCI3 file naming scheme Common::ArchiveMemberList mapFiles;