[Scummvm-cvs-logs] SF.net SVN: scummvm:[50102] scummvm/trunk/engines/sci/resource.cpp
mthreepwood at users.sourceforge.net
mthreepwood at users.sourceforge.net
Mon Jun 21 00:30:20 CEST 2010
Revision: 50102
http://scummvm.svn.sourceforge.net/scummvm/?rev=50102&view=rev
Author: mthreepwood
Date: 2010-06-20 22:30:20 +0000 (Sun, 20 Jun 2010)
Log Message:
-----------
Ignore the broken 65535x.map file in the QFG4 demo, mistakenly picked up when checking for patches. Audio now works there.
Modified Paths:
--------------
scummvm/trunk/engines/sci/resource.cpp
Modified: scummvm/trunk/engines/sci/resource.cpp
===================================================================
--- scummvm/trunk/engines/sci/resource.cpp 2010-06-20 21:14:46 UTC (rev 50101)
+++ scummvm/trunk/engines/sci/resource.cpp 2010-06-20 22:30:20 UTC (rev 50102)
@@ -1246,6 +1246,11 @@
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());
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
More information about the Scummvm-git-logs
mailing list