diff options
author | Matthew Hoops | 2010-08-02 14:38:20 +0000 |
---|---|---|
committer | Matthew Hoops | 2010-08-02 14:38:20 +0000 |
commit | 94e8c3a1a85c6939aa205fa504fc06fdaf7fd8f9 (patch) | |
tree | bf1d2fb12618075f0cad7caddab53bcbd42e00ed /engines | |
parent | c715f18273a51629d73cd185b94f8c036d5c15de (diff) | |
download | scummvm-rg350-94e8c3a1a85c6939aa205fa504fc06fdaf7fd8f9.tar.gz scummvm-rg350-94e8c3a1a85c6939aa205fa504fc06fdaf7fd8f9.tar.bz2 scummvm-rg350-94e8c3a1a85c6939aa205fa504fc06fdaf7fd8f9.zip |
SCI: Add fallback detection for Mac SCI0 games
svn-id: r51620
Diffstat (limited to 'engines')
-rw-r--r-- | engines/sci/detection.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/sci/detection.cpp b/engines/sci/detection.cpp index 3e5d978e91..3a8e10fd84 100644 --- a/engines/sci/detection.cpp +++ b/engines/sci/detection.cpp @@ -496,8 +496,8 @@ const ADGameDescription *SciMetaEngine::fallbackDetect(const Common::FSList &fsl 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 |