diff options
author | Max Horn | 2002-12-26 22:02:58 +0000 |
---|---|---|
committer | Max Horn | 2002-12-26 22:02:58 +0000 |
commit | c44512ff718e8e20b535892f8de806b1394cd4b7 (patch) | |
tree | 92acf82cdaeefbc3b2b42ca6c9e4dbbae9301d8f | |
parent | 3fffd05ebfa7fdb881505bfc327cd92267aabf03 (diff) | |
download | scummvm-rg350-c44512ff718e8e20b535892f8de806b1394cd4b7.tar.gz scummvm-rg350-c44512ff718e8e20b535892f8de806b1394cd4b7.tar.bz2 scummvm-rg350-c44512ff718e8e20b535892f8de806b1394cd4b7.zip |
added FIXME comment
svn-id: r6178
-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; } |