diff options
author | Travis Howell | 2003-07-20 16:02:17 +0000 |
---|---|---|
committer | Travis Howell | 2003-07-20 16:02:17 +0000 |
commit | 43ba55e30898ec931f987cabb1a21923c7559612 (patch) | |
tree | b361f7600ae7d7ebcf9a7b9add8de778457041d8 | |
parent | a4b5891dd15b85fbdca322e88cea19cddf652cdc (diff) | |
download | scummvm-rg350-43ba55e30898ec931f987cabb1a21923c7559612.tar.gz scummvm-rg350-43ba55e30898ec931f987cabb1a21923c7559612.tar.bz2 scummvm-rg350-43ba55e30898ec931f987cabb1a21923c7559612.zip |
Revert my bad code
svn-id: r9094
-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 c99f57c3a2..cc143cda35 100644 --- a/scumm/scummvm.cpp +++ b/scumm/scummvm.cpp @@ -616,7 +616,7 @@ Scumm::Scumm (GameDetector *detector, OSystem *syst) _imuse = NULL; _playerV2 = NULL; } else if (_features & GF_OLD_BUNDLE) { - if ((_version == 1) && (_gameId == GID_MANIAC)) + if ((_features & GF_AMIGA) || ((_version == 1) && (_gameId == GID_MANIAC))) _playerV2 = NULL; else _playerV2 = new Player_V2(this); |