aboutsummaryrefslogtreecommitdiff
path: root/scumm
diff options
context:
space:
mode:
authorTravis Howell2003-07-05 09:52:22 +0000
committerTravis Howell2003-07-05 09:52:22 +0000
commit6c2ac4b481bdcdf2ffebaaf2125d0a63d576d28f (patch)
tree233687c1c6abf7d7752cce12a1dd2b858ce13d63 /scumm
parent843e18d45d6074efd85dc7c10da135bc7de9b91f (diff)
downloadscummvm-rg350-6c2ac4b481bdcdf2ffebaaf2125d0a63d576d28f.tar.gz
scummvm-rg350-6c2ac4b481bdcdf2ffebaaf2125d0a63d576d28f.tar.bz2
scummvm-rg350-6c2ac4b481bdcdf2ffebaaf2125d0a63d576d28f.zip
Put check it right place
svn-id: r8769
Diffstat (limited to 'scumm')
-rw-r--r--scumm/scummvm.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/scumm/scummvm.cpp b/scumm/scummvm.cpp
index db5ae99a81..cbd22ed708 100644
--- a/scumm/scummvm.cpp
+++ b/scumm/scummvm.cpp
@@ -628,9 +628,9 @@ Scumm::Scumm (GameDetector *detector, OSystem *syst)
_imuseDigital = new IMuseDigital(this);
_imuse = NULL;
_playerV2 = NULL;
- } else if ((_features & GF_OLD_BUNDLE) && !(_features & GF_AMIGA) && _version != 1) {
+ } else if (_features & GF_OLD_BUNDLE) {
_playerV2 = NULL;
- if (!(_features & GF_AMIGA))
+ if (!(_features & GF_AMIGA) && _version != 1)
_playerV2 = new Player_V2(this);
_imuse = NULL;
_imuseDigital = NULL;