From 94afcba1110fd0d3417524833dce55259a8415e9 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Fri, 18 Dec 2020 11:48:14 -0700 Subject: [PATCH] libardour: fix comment in Region::source_beats_to_absolute_time() --- libs/ardour/region.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/ardour/region.cc b/libs/ardour/region.cc index a3fcfa9022..24c1e8ac70 100644 --- a/libs/ardour/region.cc +++ b/libs/ardour/region.cc @@ -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); }