From e3e014bfe6bbf1d2feb45784f507fff52671b2cc Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Wed, 2 Oct 2024 11:03:08 -0600 Subject: [PATCH] NO-OP: comment work --- libs/temporal/temporal/tempo.h | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/libs/temporal/temporal/tempo.h b/libs/temporal/temporal/tempo.h index b131686032..549749fc82 100644 --- a/libs/temporal/temporal/tempo.h +++ b/libs/temporal/temporal/tempo.h @@ -263,7 +263,9 @@ class LIBTEMPORAL_API Tempo { superclock_t _end_superclocks_per_note_type; int8_t _note_type; bool _locked_to_meter; /* XXX name has unclear meaning with nutempo */ - bool _continuing; + bool _continuing; /* true if our effective end tempo is defined + * by the following tempo in the TempoMap; + * false if we use our own end tempo. */ static inline superclock_t double_npm_to_scpn (double npm) { return (superclock_t) llround ((60./npm) * superclock_ticks_per_second()); } @@ -348,8 +350,8 @@ class /*LIBTEMPORAL_API*/ MeterPoint : public Meter, public meter_hook, public v }; /* A TempoPoint is a combination of a Tempo with a Point. However, if the temp - * is ramped, then at some point we will need to compute the ramp coefficients - * (c-per-quarter and c-per-superclock) and store them so that we can compute + * is ramped, then at some point we will need to compute the ramp coefficient + * (_omega) and store it so that we can compute tempo-at-time and * time-at-quarter-note on demand. */