From e75ad3399e2ddabfce7909d160829afd47bb66f2 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Tue, 14 May 2024 03:20:04 +0200 Subject: [PATCH] Fix BBT marker calculation when removing time --- 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 fe7b5f7b88..f2099ec66f 100644 --- a/libs/temporal/tempo.cc +++ b/libs/temporal/tempo.cc @@ -3619,7 +3619,7 @@ TempoMap::remove_time (timepos_t const & pos, timecnt_t const & duration) } if (last_meter && !meter_after) { - last_tempo->set (start, last_meter->beats(), last_meter->bbt()); + last_meter->set (start, last_meter->beats(), last_meter->bbt()); moved = true; }