[Scummvm-cvs-logs] SF.net SVN: scummvm:[51620] scummvm/trunk/engines/sci/detection.cpp
mthreepwood at users.sourceforge.net
mthreepwood at users.sourceforge.net
Mon Aug 2 16:38:20 CEST 2010
Revision: 51620
http://scummvm.svn.sourceforge.net/scummvm/?rev=51620&view=rev
Author: mthreepwood
Date: 2010-08-02 14:38:20 +0000 (Mon, 02 Aug 2010)
Log Message:
-----------
SCI: Add fallback detection for Mac SCI0 games
Modified Paths:
--------------
scummvm/trunk/engines/sci/detection.cpp
Modified: scummvm/trunk/engines/sci/detection.cpp
===================================================================
--- scummvm/trunk/engines/sci/detection.cpp 2010-08-02 14:14:06 UTC (rev 51619)
+++ scummvm/trunk/engines/sci/detection.cpp 2010-08-02 14:38:20 UTC (rev 51620)
@@ -496,8 +496,8 @@
filename.contains("patch.005") || filename.contains("bank.001"))
s_fallbackDesc.platform = Common::kPlatformAmiga;
- // The existence of 7.pat indicates a Mac game
- if (filename.contains("7.pat"))
+ // The existence of 7.pat or patch.200 indicates a Mac game
+ if (filename.contains("7.pat") || filename.contains("patch.200"))
s_fallbackDesc.platform = Common::kPlatformMacintosh;
// The data files for Atari ST versions are the same as their DOS counterparts
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