aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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/");