summaryrefslogtreecommitdiff
path: root/libs
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2008-05-15 06:00:22 +0000
committerDavid Robillard <d@drobilla.net>2008-05-15 06:00:22 +0000
commit504a3d765f3d67b2b2053ac02e8d2fcb38e34f7e (patch)
tree767dee2dd301cc45ecd6bdbeec201dd040fee278 /libs
parente43da352cc8175891dfbf2fc01f7c2b69cbb342d (diff)
Re-comment-out MIDI iteration debug prints (oops).
git-svn-id: svn://localhost/ardour2/branches/3.0@3353 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs')
-rw-r--r--libs/ardour/midi_model.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/libs/ardour/midi_model.cc b/libs/ardour/midi_model.cc
index 7ddf3cb154..b4e2c54d3c 100644
--- a/libs/ardour/midi_model.cc
+++ b/libs/ardour/midi_model.cc
@@ -239,19 +239,19 @@ const MidiModel::const_iterator& MidiModel::const_iterator::operator++()
}
if (type == NOTE_ON) {
- cerr << "********** MIDI Iterator = note on" << endl;
+ //cerr << "********** MIDI Iterator = note on" << endl;
*_event = (*_note_iter)->on_event();
_active_notes.push(*_note_iter);
++_note_iter;
} else if (type == NOTE_OFF) {
- cerr << "********** MIDI Iterator = note off" << endl;
+ //cerr << "********** MIDI Iterator = note off" << endl;
*_event = _active_notes.top()->off_event();
_active_notes.pop();
} else if (type == AUTOMATION) {
- cerr << "********** MIDI Iterator = Automation" << endl;
+ //cerr << "********** MIDI Iterator = Automation" << endl;
_model->control_to_midi_event(_event, *_control_iter);
} else {
- cerr << "********** MIDI Iterator = End" << endl;
+ //cerr << "********** MIDI Iterator = End" << endl;
_is_end = true;
}