diff options
-rw-r--r-- | sound/midiparser.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/midiparser.cpp b/sound/midiparser.cpp index e3453d92da..6af0a568ef 100644 --- a/sound/midiparser.cpp +++ b/sound/midiparser.cpp @@ -279,7 +279,7 @@ void MidiParser::hangAllActiveNotes() { _active_notes [_next_event.basic.param1] &= ~ (1 << _next_event.channel()); } } else if (_next_event.event == 0xFF && _next_event.ext.type == 0x2F) { - printf ("MidiParser::hangAllActiveNotes(): Hit End of Track with active notes left!\n"); + // printf ("MidiParser::hangAllActiveNotes(): Hit End of Track with active notes left!\n"); memset (_active_notes, 0, sizeof (_active_notes)); break; } |