diff options
author | Travis Howell | 2003-07-05 09:40:18 +0000 |
---|---|---|
committer | Travis Howell | 2003-07-05 09:40:18 +0000 |
commit | 6419cc80e7117f857f9dce36dcc6c2b42d52e92f (patch) | |
tree | e21a541ec87a4ef30ea8a5b46845f46c3cce7886 | |
parent | d5aa3bd41c83f33a0038a0a48e90b98e411bc46f (diff) | |
download | scummvm-rg350-6419cc80e7117f857f9dce36dcc6c2b42d52e92f.tar.gz scummvm-rg350-6419cc80e7117f857f9dce36dcc6c2b42d52e92f.tar.bz2 scummvm-rg350-6419cc80e7117f857f9dce36dcc6c2b42d52e92f.zip |
Don
't attempt to play music/sfx in v1 games
svn-id: r8767
-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 6736e92ab1..31b5912fa9 100644 --- a/scumm/scummvm.cpp +++ b/scumm/scummvm.cpp @@ -628,7 +628,7 @@ Scumm::Scumm (GameDetector *detector, OSystem *syst) _imuseDigital = new IMuseDigital(this); _imuse = NULL; _playerV2 = NULL; - } else if ((_features & GF_OLD_BUNDLE) && !(_features & GF_AMIGA)) { + } else if ((_features & GF_OLD_BUNDLE) && !(_features & GF_AMIGA) && _version != 1) { _playerV2 = NULL; if (!(_features & GF_AMIGA)) _playerV2 = new Player_V2(this); |