aboutsummaryrefslogtreecommitdiff
path: root/sound
diff options
context:
space:
mode:
authorJamieson Christian2003-05-23 04:35:50 +0000
committerJamieson Christian2003-05-23 04:35:50 +0000
commit0be2b4673c27910fd1bbb0e25bf6179b4f0a9a10 (patch)
treeec0f274e270996e40562e5307e25fcb5d70f7d10 /sound
parent08b5337b207599cff6214cc5a61196583a7c7434 (diff)
downloadscummvm-rg350-0be2b4673c27910fd1bbb0e25bf6179b4f0a9a10.tar.gz
scummvm-rg350-0be2b4673c27910fd1bbb0e25bf6179b4f0a9a10.tar.bz2
scummvm-rg350-0be2b4673c27910fd1bbb0e25bf6179b4f0a9a10.zip
Removed annoying warning
svn-id: r7851
Diffstat (limited to 'sound')
-rw-r--r--sound/midiparser.cpp2
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;
}