From 72534afea9696316c61c2b647f87638a34c2f57e Mon Sep 17 00:00:00 2001 From: Matthew Hoops Date: Sun, 20 Jun 2010 22:30:20 +0000 Subject: Ignore the broken 65535x.map file in the QFG4 demo, mistakenly picked up when checking for patches. Audio now works there. svn-id: r50102 --- engines/sci/resource.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/engines/sci/resource.cpp b/engines/sci/resource.cpp index 745cad7029..acb7d46127 100644 --- a/engines/sci/resource.cpp +++ b/engines/sci/resource.cpp @@ -1246,6 +1246,11 @@ void ResourceManager::readResourcePatches() { for (Common::ArchiveMemberList::const_iterator x = files.begin(); x != files.end(); ++x) { bool bAdd = false; name = (*x)->getName(); + + // HACK: Skip broken map in QFG4 Demo + if (name.equalsIgnoreCase("65535x.map")) + continue; + // SCI1 scheme if (isdigit(name[0])) { resourceNr = atoi(name.c_str()); -- cgit v1.2.3