remove debug output

This commit is contained in:
Paul Davis 2018-11-16 12:43:20 -05:00
parent c9e4d3f045
commit 1edcc3d279

View file

@ -714,8 +714,6 @@ StepSequencer::check_note_offs (MidiBuffer& mbuf, samplepos_t start_sample, samp
for (NoteOffList::iterator i = note_offs.begin(); i != note_offs.end(); ) { for (NoteOffList::iterator i = note_offs.begin(); i != note_offs.end(); ) {
samplepos_t when = _tempo_map.sample_at_beat (i->when.to_double()); /* XXX nutempo */ samplepos_t when = _tempo_map.sample_at_beat (i->when.to_double()); /* XXX nutempo */
cerr << "note off at " << i->when << " sample " << when << " within " << start_sample << " .. " << end_sample << endl;
if (when >= start_sample && when < end_sample) { if (when >= start_sample && when < end_sample) {
mbuf.write (when - start_sample, Evoral::MIDI_EVENT, 3, i->buf); mbuf.write (when - start_sample, Evoral::MIDI_EVENT, 3, i->buf);
NoteOffBlob& nob (*i); NoteOffBlob& nob (*i);