diff options
-rw-r--r-- | scumm/sound.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/scumm/sound.cpp b/scumm/sound.cpp index 78afbe5fa3..9f23554205 100644 --- a/scumm/sound.cpp +++ b/scumm/sound.cpp @@ -954,11 +954,13 @@ static void music_handler (void * engine) { #define OUTPUT_SIZE 66150 // ((22050 * 2 * 2) / 4) * 3 void Sound::playBundleMusic(char * song) { + if (_scumm->_silentDigitalImuse == true) { return; } if (_nameBundleMusic == NULL) { + // FIXME: we have MUSDISK1.BUN and MUSDISK2.BUN in COMI. if (_scumm->_bundle->openMusicFile("digmusic.bun", _scumm->getGameDataPath()) == false) { return; } |