diff options
author | Matthew Hoops | 2012-03-08 08:02:58 -0500 |
---|---|---|
committer | Matthew Hoops | 2012-03-08 08:02:58 -0500 |
commit | 30e7a0f00129323676cc9490e7c070374c6472f4 (patch) | |
tree | 75b8d468162f3f42da051f273343b5951b1e6fc6 /engines | |
parent | 1e734ab48caa842335d0283443614c8dd3f2750a (diff) | |
download | scummvm-rg350-30e7a0f00129323676cc9490e7c070374c6472f4.tar.gz scummvm-rg350-30e7a0f00129323676cc9490e7c070374c6472f4.tar.bz2 scummvm-rg350-30e7a0f00129323676cc9490e7c070374c6472f4.zip |
SCI: Fix SCI1.1+ Mac games with resource fork container names
Diffstat (limited to 'engines')
-rw-r--r-- | engines/sci/resource.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sci/resource.cpp b/engines/sci/resource.cpp index 50b3387159..77a6a40a92 100644 --- a/engines/sci/resource.cpp +++ b/engines/sci/resource.cpp @@ -609,7 +609,7 @@ int ResourceManager::addAppropriateSources() { if (Common::File::exists("alt.map") && Common::File::exists("resource.alt")) addSource(new VolumeResourceSource("resource.alt", addExternalMap("alt.map", 10), 10)); #endif - } else if (Common::File::exists("Data1")) { + } else if (Common::MacResManager::exists("Data1")) { // Mac SCI1.1+ file naming scheme SearchMan.listMatchingMembers(files, "Data?*"); |