diff options
author | Travis Howell | 2004-07-17 05:35:38 +0000 |
---|---|---|
committer | Travis Howell | 2004-07-17 05:35:38 +0000 |
commit | 7da0466ec59fa1b2410bc6783345b167768201c7 (patch) | |
tree | 37ce7663fe646e32738de96f179d97e6ffcd00d9 /scumm | |
parent | 60dd6b7d3b6cbfa6ebff7a92b4134dd2a45a05ff (diff) | |
download | scummvm-rg350-7da0466ec59fa1b2410bc6783345b167768201c7.tar.gz scummvm-rg350-7da0466ec59fa1b2410bc6783345b167768201c7.tar.bz2 scummvm-rg350-7da0466ec59fa1b2410bc6783345b167768201c7.zip |
Alter check, since later games set VAR elsewhere.
svn-id: r14230
Diffstat (limited to 'scumm')
-rw-r--r-- | scumm/sound.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/sound.cpp b/scumm/sound.cpp index 28f59f4371..60854c57be 100644 --- a/scumm/sound.cpp +++ b/scumm/sound.cpp @@ -898,7 +898,7 @@ void Sound::setupSound() { delete _sfxFile; _sfxFile = openSfxFile(); - if (_vm->VAR_VOICE_BUNDLE_LOADED != 0xFF) + if (_vm->_gameId == GID_FT) _vm->VAR(_vm->VAR_VOICE_BUNDLE_LOADED) = _sfxFile->isOpen(); } |