aboutsummaryrefslogtreecommitdiff
path: root/scumm
diff options
context:
space:
mode:
authorTravis Howell2003-07-05 09:40:18 +0000
committerTravis Howell2003-07-05 09:40:18 +0000
commit6419cc80e7117f857f9dce36dcc6c2b42d52e92f (patch)
treee21a541ec87a4ef30ea8a5b46845f46c3cce7886 /scumm
parentd5aa3bd41c83f33a0038a0a48e90b98e411bc46f (diff)
downloadscummvm-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
Diffstat (limited to 'scumm')
-rw-r--r--scumm/scummvm.cpp2
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);