diff options
author | Martin Kiewitz | 2009-10-12 16:00:30 +0000 |
---|---|---|
committer | Martin Kiewitz | 2009-10-12 16:00:30 +0000 |
commit | 093554749f18f209d9f45b5db52ed3db0fb49e01 (patch) | |
tree | eec8ebec0c17f89405192fd26513c0618aaa07d5 | |
parent | 291e479daf44611be9238943ba0ee33150baaedc (diff) | |
download | scummvm-rg350-093554749f18f209d9f45b5db52ed3db0fb49e01.tar.gz scummvm-rg350-093554749f18f209d9f45b5db52ed3db0fb49e01.tar.bz2 scummvm-rg350-093554749f18f209d9f45b5db52ed3db0fb49e01.zip |
SCI: commenting out music warnings
svn-id: r44990
-rw-r--r-- | engines/sci/sfx/iterator.cpp | 4 | ||||
-rw-r--r-- | engines/sci/sfx/softseq/adlib.cpp | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/engines/sci/sfx/iterator.cpp b/engines/sci/sfx/iterator.cpp index edbb309ed1..86a1e1c14b 100644 --- a/engines/sci/sfx/iterator.cpp +++ b/engines/sci/sfx/iterator.cpp @@ -1356,8 +1356,8 @@ TeeSongIterator::TeeSongIterator(SongIterator *left, SongIterator *right) { if (firstfree == MIDI_CHANNELS) { incomplete_map = 1; - warning("[songit-tee <%08lx,%08lx>] Could not remap right channel #%d: Out of channels", - left->ID, right->ID, i); + //warning("[songit-tee <%08lx,%08lx>] Could not remap right channel #%d: Out of channels", + // left->ID, right->ID, i); } else { _children[TEE_RIGHT].channel_remap[i] = firstfree; diff --git a/engines/sci/sfx/softseq/adlib.cpp b/engines/sci/sfx/softseq/adlib.cpp index 7afe632300..7343ba1237 100644 --- a/engines/sci/sfx/softseq/adlib.cpp +++ b/engines/sci/sfx/softseq/adlib.cpp @@ -173,7 +173,7 @@ void MidiDriver_Adlib::send(uint32 b) { voiceOff(i); break; default: - warning("ADLIB: ignoring MIDI command %02x %02x %02x", command | channel, op1, op2); + //warning("ADLIB: ignoring MIDI command %02x %02x %02x", command | channel, op1, op2); break; } break; |