Fix BBT marker calculation when removing time

This commit is contained in:
Robin Gareus 2024-05-14 03:20:04 +02:00
parent aa55bf35eb
commit e75ad3399e
Signed by: rgareus
GPG Key ID: A090BCE02CF57F04
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}