diff --git a/libs/temporal/timeline.cc b/libs/temporal/timeline.cc index 1dc314277a..7025ecc08c 100644 --- a/libs/temporal/timeline.cc +++ b/libs/temporal/timeline.cc @@ -778,7 +778,8 @@ timepos_t::operator+= (Temporal::BBT_Offset const & offset) { TempoMap::SharedPtr tm (TempoMap::use()); if (is_beats()) { - v = build (true, tm->bbtwalk_to_quarters (beats(), offset).to_ticks()); + Temporal::Beats r = tm->quarters_at (tm->bbt_walk (tm->bbt_at (beats()), offset)); + v = build (true, r.to_ticks()); } else { v = build (false, tm->superclock_at (tm->bbt_walk (BBT_Argument (this->superclocks(), tm->bbt_at (*this)), offset))); }