From 1edcc3d2792f731b437049fb00dbaf623989a156 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Fri, 16 Nov 2018 12:43:20 -0500 Subject: [PATCH] remove debug output --- libs/ardour/step_sequencer.cc | 2 -- 1 file changed, 2 deletions(-) diff --git a/libs/ardour/step_sequencer.cc b/libs/ardour/step_sequencer.cc index 94398d2e40..5e60b6c4c0 100644 --- a/libs/ardour/step_sequencer.cc +++ b/libs/ardour/step_sequencer.cc @@ -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(); ) { 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) { mbuf.write (when - start_sample, Evoral::MIDI_EVENT, 3, i->buf); NoteOffBlob& nob (*i);