diff options
author | Matthew Hoops | 2010-07-17 20:29:33 +0000 |
---|---|---|
committer | Matthew Hoops | 2010-07-17 20:29:33 +0000 |
commit | 880bb9f421811b7c8ff170bc0332201d07b0ee65 (patch) | |
tree | 71ac306a46f94e2882f3a8f510bb60a41592605d /engines | |
parent | 723f15c0848e828a6877365ff0453d16ebcb0589 (diff) | |
download | scummvm-rg350-880bb9f421811b7c8ff170bc0332201d07b0ee65.tar.gz scummvm-rg350-880bb9f421811b7c8ff170bc0332201d07b0ee65.tar.bz2 scummvm-rg350-880bb9f421811b7c8ff170bc0332201d07b0ee65.zip |
Add support for the altres.map/altres.000 map/volume pair in KQ7.
svn-id: r50968
Diffstat (limited to 'engines')
-rw-r--r-- | engines/sci/resource.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/engines/sci/resource.cpp b/engines/sci/resource.cpp index 1a40cba97e..731f4dd573 100644 --- a/engines/sci/resource.cpp +++ b/engines/sci/resource.cpp @@ -527,9 +527,13 @@ int ResourceManager::addAppropriateSources() { #endif addPatchDir("."); + if (Common::File::exists("message.map")) addSource(new VolumeResourceSource("resource.msg", addExternalMap("message.map"), 0)); + if (Common::File::exists("altres.map")) + addSource(new VolumeResourceSource("altres.000", addExternalMap("altres.map"), 0)); + return 1; } |