diff options
author | Travis Howell | 2003-06-01 04:03:40 +0000 |
---|---|---|
committer | Travis Howell | 2003-06-01 04:03:40 +0000 |
commit | fa481d90e5735c079b12df1b3a8b17a8081ce644 (patch) | |
tree | fd33dec1e6df49b979d3bdbd67862081e6099325 /scumm | |
parent | 22b5009a3515fca65263e3b66e52b80409cf6b06 (diff) | |
download | scummvm-rg350-fa481d90e5735c079b12df1b3a8b17a8081ce644.tar.gz scummvm-rg350-fa481d90e5735c079b12df1b3a8b17a8081ce644.tar.bz2 scummvm-rg350-fa481d90e5735c079b12df1b3a8b17a8081ce644.zip |
Enable loom sound patch, works in both loomega and indy3ega
Use Amiga flag for Amiga versions for now
svn-id: r8222
Diffstat (limited to 'scumm')
-rw-r--r-- | scumm/scummvm.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/scummvm.cpp b/scumm/scummvm.cpp index 8eba4c4d99..2e4e2f47ae 100644 --- a/scumm/scummvm.cpp +++ b/scumm/scummvm.cpp @@ -602,7 +602,7 @@ Scumm::Scumm (GameDetector *detector, OSystem *syst) _imuseDigital = new IMuseDigital(this); _imuse = NULL; _playerV2 = NULL; - } else if (_features & GF_OLD_BUNDLE && !(_features & GF_AFTER_V3)) { + } else if (_features & GF_OLD_BUNDLE && !(_features & GF_AMIGA)) { _playerV2 = NULL; if (!(_features & GF_AMIGA)) _playerV2 = new Player_V2(); |