13
0

libardour: fix comment in Region::source_beats_to_absolute_time()

This commit is contained in:
Paul Davis 2020-12-18 11:48:14 -07:00
parent 80986b9445
commit 94afcba111

View File

@ -2018,7 +2018,7 @@ Region::source_beats_to_absolute_time (Temporal::Beats beats) const
{
/* return the time corresponding to `beats' relative to the start of
the source. The start of the source is an implied position given by
region->position - region->start
region->position - region->start aka ::source_position()
*/
return source_position() + timepos_t (beats);
}