diff options
author | Paweł Kołodziejski | 2004-04-09 21:42:37 +0000 |
---|---|---|
committer | Paweł Kołodziejski | 2004-04-09 21:42:37 +0000 |
commit | 6d4839d376a0eabd1cd5251e0a5b3f74deff798a (patch) | |
tree | a39180cbddff67890d9efb572a1d667725973643 /scumm | |
parent | 125e9b76593b8206a57b218c857ca19a4728d156 (diff) | |
download | scummvm-rg350-6d4839d376a0eabd1cd5251e0a5b3f74deff798a.tar.gz scummvm-rg350-6d4839d376a0eabd1cd5251e0a5b3f74deff798a.tar.bz2 scummvm-rg350-6d4839d376a0eabd1cd5251e0a5b3f74deff798a.zip |
it seems to be needed for comi too, hmm
svn-id: r13525
Diffstat (limited to 'scumm')
-rw-r--r-- | scumm/scumm.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/scumm/scumm.cpp b/scumm/scumm.cpp index 5d1a41be45..7bf05f0245 100644 --- a/scumm/scumm.cpp +++ b/scumm/scumm.cpp @@ -1577,9 +1577,8 @@ load_game: } _sound->processSoundQues(); - if (_imuseDigital && - ( ((_gameId == GID_DIG) && (!(_features & GF_DEMO))) || - ((_gameId == GID_CMI) && (_features & GF_DEMO)) ) ) + if (_imuseDigital && + ( ((_gameId == GID_DIG) && (!(_features & GF_DEMO))) || (_gameId == GID_CMI) )) _imuseDigital->refreshScripts(); camera._last = camera._cur; |