mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-10 23:46:20 +01:00
triggerbox: must run when speed is zero
We only want to not run triggerbox during latency pre-roll
This commit is contained in:
parent
6ce804b4c9
commit
dd5003eb1e
1 changed files with 1 additions and 1 deletions
|
|
@ -546,7 +546,7 @@ Route::process_output_buffers (BufferSet& bufs,
|
|||
* running it.
|
||||
*/
|
||||
|
||||
if (run_disk_reader || ((*i) != _triggerbox)) {
|
||||
if (run_disk_reader || ((*i) != _triggerbox) || speed == 0) {
|
||||
if (speed < 0) {
|
||||
(*i)->run (bufs, start_sample + latency, end_sample + latency, pspeed, nframes, *i != _processors.back());
|
||||
} else {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue