diff options
| author | Travis Howell | 2004-08-21 10:18:13 +0000 |
|---|---|---|
| committer | Travis Howell | 2004-08-21 10:18:13 +0000 |
| commit | 61ad833dbdd6ee9e4bbf7db06250aa8faef0e4b1 (patch) | |
| tree | a8378ef962153239b39a8c9db16333f520198230 | |
| parent | cc585c177375b587f6cd97511fe5e6d6ff20ed67 (diff) | |
| download | scummvm-rg350-61ad833dbdd6ee9e4bbf7db06250aa8faef0e4b1.tar.gz scummvm-rg350-61ad833dbdd6ee9e4bbf7db06250aa8faef0e4b1.tar.bz2 scummvm-rg350-61ad833dbdd6ee9e4bbf7db06250aa8faef0e4b1.zip | |
Also used in Atari ST versions.
svn-id: r14668
| -rw-r--r-- | scumm/scumm.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/scumm.cpp b/scumm/scumm.cpp index b1e4a73234..2652288cdc 100644 --- a/scumm/scumm.cpp +++ b/scumm/scumm.cpp @@ -389,7 +389,7 @@ ScummEngine::ScummEngine(GameDetector *detector, OSystem *syst, const ScummGameS _targetName(detector->_targetName) { // Add default file directories. - if ((_features & GF_AMIGA) && (_version <= 3)) { + if (((_features & GF_AMIGA) || (_features & GF_ATARI_ST)) && (_version <= 4)) { // This is for the Amiga version of Indy3/Loom/Maniac/Zak File::addDefaultDirectory(_gameDataPath + "/ROOMS/"); File::addDefaultDirectory(_gameDataPath + "/rooms/"); |
