diff options
author | Paweł Kołodziejski | 2004-04-09 18:18:42 +0000 |
---|---|---|
committer | Paweł Kołodziejski | 2004-04-09 18:18:42 +0000 |
commit | c4383474cf7dcba9a19bf89b6c7335a03ea34327 (patch) | |
tree | 93545ff57b30e6f5669f899b0f28c6485d367f40 | |
parent | 3e98a219b2c7c44ce276d4db6020599a8633db6d (diff) | |
download | scummvm-rg350-c4383474cf7dcba9a19bf89b6c7335a03ea34327.tar.gz scummvm-rg350-c4383474cf7dcba9a19bf89b6c7335a03ea34327.tar.bz2 scummvm-rg350-c4383474cf7dcba9a19bf89b6c7335a03ea34327.zip |
refreshScripts only for full game dig, and cmi demo
svn-id: r13522
-rw-r--r-- | scumm/scumm.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/scumm/scumm.cpp b/scumm/scumm.cpp index 42b8a3adc5..5d1a41be45 100644 --- a/scumm/scumm.cpp +++ b/scumm/scumm.cpp @@ -1577,7 +1577,9 @@ load_game: } _sound->processSoundQues(); - if ((_imuseDigital) && (_gameId == GID_DIG)) + if (_imuseDigital && + ( ((_gameId == GID_DIG) && (!(_features & GF_DEMO))) || + ((_gameId == GID_CMI) && (_features & GF_DEMO)) ) ) _imuseDigital->refreshScripts(); camera._last = camera._cur; |