plugins should NOT resolve MIDI notes at loopend

Their data will come from (1) disk, in which case the DiskReader will do the resolve (2) live input
in which case the player/user will do the resolve
This commit is contained in:
Paul Davis 2020-01-07 15:06:31 -07:00
parent 11d7803e57
commit 5948d14012

View File

@ -393,7 +393,9 @@ Plugin::realtime_handle_transport_stopped ()
void
Plugin::realtime_locate (bool for_loop_end)
{
resolve_midi ();
if (!for_loop_end) {
resolve_midi ();
}
}
void