From b195a04281cdd9352c010d3e5ea24ea03074018f Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Thu, 27 Oct 2022 15:02:12 -0600 Subject: [PATCH] fix loading 6.x sessions with initial meter not at sample zero --- libs/temporal/tempo.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/temporal/tempo.cc b/libs/temporal/tempo.cc index 033f661770..8437e50275 100644 --- a/libs/temporal/tempo.cc +++ b/libs/temporal/tempo.cc @@ -3581,7 +3581,7 @@ TempoMap::set_state_3x (const XMLNode& node) break; } - if (lms.beat != 0) { + if (lms.sample != 0) { initial_meter_at_zero = false; }