diff options
author | Travis Howell | 2003-08-17 16:23:44 +0000 |
---|---|---|
committer | Travis Howell | 2003-08-17 16:23:44 +0000 |
commit | 9b7773f4a2df1a08b1e8aaf926210353e98ff2df (patch) | |
tree | 12012480a71b77d2f0409b52d2dc34a6f2adac5f /scumm | |
parent | 41ca88939c4e76ae5f1e7049de9843a5d18db754 (diff) | |
download | scummvm-rg350-9b7773f4a2df1a08b1e8aaf926210353e98ff2df.tar.gz scummvm-rg350-9b7773f4a2df1a08b1e8aaf926210353e98ff2df.tar.bz2 scummvm-rg350-9b7773f4a2df1a08b1e8aaf926210353e98ff2df.zip |
Don't attempt sound in maniacnes
svn-id: r9740
Diffstat (limited to 'scumm')
-rw-r--r-- | scumm/resource_v2.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/resource_v2.cpp b/scumm/resource_v2.cpp index 431deb0708..eed764c0d7 100644 --- a/scumm/resource_v2.cpp +++ b/scumm/resource_v2.cpp @@ -32,7 +32,7 @@ void Scumm_v2::readClassicIndexFile() { if (_gameId == GID_MANIAC) { //FIXME the music driver was previously been set before detection of classic/enchanced version. - if (!(_features & GF_AMIGA)) + if (!(_features & GF_AMIGA) && !(_features & GF_NES)) _playerV2 = new Player_V1(this); _numGlobalObjects = 800; |