From a7df009de73ad38026ff97d9aeafb8e2aa22e627 Mon Sep 17 00:00:00 2001 From: nick_m Date: Sun, 27 Mar 2016 10:45:51 +1100 Subject: [PATCH] Tempo ramps - avoid sending negative beats to the BFC. --- libs/ardour/tempo.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/ardour/tempo.cc b/libs/ardour/tempo.cc index 90dc8af537..0ffe36485f 100644 --- a/libs/ardour/tempo.cc +++ b/libs/ardour/tempo.cc @@ -2042,7 +2042,7 @@ TempoMap::solve_map (Metrics& imaginary, TempoSection* section, const Tempo& bpm } } } - if (section->movable() && frame < first_m_frame) { + if (section->movable() && frame <= first_m_frame) { return false; } else { section->set_active (true);