mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-07 22:25:46 +01:00
Prevent note trackers for overlapping MIDI regions inserting events that occur before the requested time range, thereby stopping playback. Should fix #3973.
git-svn-id: svn://localhost/ardour2/branches/3.0@9399 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
884de065bd
commit
80476ce3f3
1 changed files with 1 additions and 1 deletions
|
|
@ -124,7 +124,7 @@ MidiPlaylist::read (MidiRingBuffer<framepos_t>& dst, framepos_t start, framecnt_
|
|||
*/
|
||||
|
||||
framepos_t resolve_at = (*i)->last_frame();
|
||||
if (resolve_at >= end) {
|
||||
if (resolve_at < start || resolve_at >= end) {
|
||||
resolve_at = start;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue