triggerbox: include change intended to be in cb815bf8d

This properly splits the condition into "before final beat" and
"after final beat"
This commit is contained in:
Paul Davis 2022-02-18 12:55:45 -07:00
parent 66b9bc5c40
commit f5ef5f44a3

View File

@ -2495,7 +2495,7 @@ MIDITrigger::midi_run (BufferSet& bufs, samplepos_t start_sample, samplepos_t en
DEBUG_TRACE (DEBUG::Triggers, string_compose ("%1 reached end, leb %2 les %3 fb %4 dl %5\n", index(), last_event_timeline_beats, last_event_samples, final_beat, data_length));
if (last_event_timeline_beats <= final_beat) {
if (last_event_timeline_beats < final_beat) {
DEBUG_TRACE (DEBUG::Triggers, string_compose ("%1 entering playout because ... leb %2 < fb %3\n", index(), last_event_timeline_beats, final_beat));