mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-26 23:18:20 +01:00
Stop spurious regions being added to tracks when chasing MTC.
git-svn-id: svn://localhost/ardour2/branches/3.0@7868 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
fff03c103d
commit
bf83719ca0
1 changed files with 3 additions and 1 deletions
|
|
@ -864,7 +864,9 @@ AudioDiskstream::internal_playback_seek (framecnt_t distance)
|
|||
(*chan)->playback_buf->increment_read_ptr (distance);
|
||||
}
|
||||
|
||||
first_recordable_frame += distance;
|
||||
if (first_recordable_frame < max_framepos) {
|
||||
first_recordable_frame += distance;
|
||||
}
|
||||
playback_sample += distance;
|
||||
|
||||
return 0;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue