SCI: Add fallback detection for Mac SCI0 games
svn-id: r51620
This commit is contained in:
parent
c715f18273
commit
94e8c3a1a8
1 changed files with 2 additions and 2 deletions
|
@ -496,8 +496,8 @@ const ADGameDescription *SciMetaEngine::fallbackDetect(const Common::FSList &fsl
|
||||||
filename.contains("patch.005") || filename.contains("bank.001"))
|
filename.contains("patch.005") || filename.contains("bank.001"))
|
||||||
s_fallbackDesc.platform = Common::kPlatformAmiga;
|
s_fallbackDesc.platform = Common::kPlatformAmiga;
|
||||||
|
|
||||||
// The existence of 7.pat indicates a Mac game
|
// The existence of 7.pat or patch.200 indicates a Mac game
|
||||||
if (filename.contains("7.pat"))
|
if (filename.contains("7.pat") || filename.contains("patch.200"))
|
||||||
s_fallbackDesc.platform = Common::kPlatformMacintosh;
|
s_fallbackDesc.platform = Common::kPlatformMacintosh;
|
||||||
|
|
||||||
// The data files for Atari ST versions are the same as their DOS counterparts
|
// The data files for Atari ST versions are the same as their DOS counterparts
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue