aboutsummaryrefslogtreecommitdiff
path: root/scumm/scumm.cpp
diff options
context:
space:
mode:
authorTravis Howell2004-08-21 10:01:19 +0000
committerTravis Howell2004-08-21 10:01:19 +0000
commitcc585c177375b587f6cd97511fe5e6d6ff20ed67 (patch)
tree9678616ec8528f26d169ea9a31511aca90bd30b2 /scumm/scumm.cpp
parent3c233116252d3abd545e1a369a5c2f446abf9b1e (diff)
downloadscummvm-rg350-cc585c177375b587f6cd97511fe5e6d6ff20ed67.tar.gz
scummvm-rg350-cc585c177375b587f6cd97511fe5e6d6ff20ed67.tar.bz2
scummvm-rg350-cc585c177375b587f6cd97511fe5e6d6ff20ed67.zip
Used in Amiga versions
svn-id: r14667
Diffstat (limited to 'scumm/scumm.cpp')
-rw-r--r--scumm/scumm.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/scumm/scumm.cpp b/scumm/scumm.cpp
index 52b0c9504b..b1e4a73234 100644
--- a/scumm/scumm.cpp
+++ b/scumm/scumm.cpp
@@ -389,14 +389,14 @@ ScummEngine::ScummEngine(GameDetector *detector, OSystem *syst, const ScummGameS
_targetName(detector->_targetName) {
// Add default file directories.
- // FIXME: Which games use "rooms" or "ROOMS" ???
- if (_version < 7) {
+ if ((_features & GF_AMIGA) && (_version <= 3)) {
+ // This is for the Amiga version of Indy3/Loom/Maniac/Zak
File::addDefaultDirectory(_gameDataPath + "/ROOMS/");
File::addDefaultDirectory(_gameDataPath + "/rooms/");
}
if ((_features & GF_MACINTOSH) && (_version == 3)) {
- // This is the for the Mac version of Indy3/Loom
+ // This is for the Mac version of Indy3/Loom
File::addDefaultDirectory(_gameDataPath + "/Rooms 1/");
File::addDefaultDirectory(_gameDataPath + "/Rooms 2/");
File::addDefaultDirectory(_gameDataPath + "/Rooms 3/");