remove requirement for transport speed to be 1.0 when generating click (metronome)
This is experimental and may not work
This commit is contained in:
parent
a4daf93f2f
commit
487a2563a6
@ -58,7 +58,7 @@ Session::click (framepos_t start, framecnt_t nframes)
|
|||||||
|
|
||||||
click_distance = start - _clicks_cleared;
|
click_distance = start - _clicks_cleared;
|
||||||
|
|
||||||
if (!clickm.locked() || _transport_speed != 1.0 || !_clicking || click_data == 0 || ((click_distance + nframes) < _worst_track_latency)) {
|
if (!clickm.locked() || !_clicking || click_data == 0 || ((click_distance + nframes) < _worst_track_latency)) {
|
||||||
_click_io->silence (nframes);
|
_click_io->silence (nframes);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user