diff options
-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; |