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:
Paul Davis 2015-11-12 09:46:14 -05:00
parent a4daf93f2f
commit 487a2563a6

View File

@ -58,7 +58,7 @@ Session::click (framepos_t start, framecnt_t nframes)
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);
return;
}