From 3513debba807c0703a51ba83ca1aa4464b3a0de1 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Fri, 30 Jun 2023 10:48:44 -0600 Subject: [PATCH] temporal: NO-OP (tiny variable rename) --- libs/temporal/tempo.cc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/libs/temporal/tempo.cc b/libs/temporal/tempo.cc index 70bdfd9137..79955b2700 100644 --- a/libs/temporal/tempo.cc +++ b/libs/temporal/tempo.cc @@ -263,11 +263,11 @@ Meter::bbt_add (Temporal::BBT_Time const & bbt, Temporal::BBT_Offset const & add if (r.ticks >= tpg) { /* ticks per bar */ - const int32_t tpb = tpg * _divisions_per_bar; + const int32_t tpB = tpg * _divisions_per_bar; - if (r.ticks >= tpb) { - r.bars += r.ticks / tpb; - r.ticks %= tpb; + if (r.ticks >= tpB) { + r.bars += r.ticks / tpB; + r.ticks %= tpB; } if (r.ticks >= tpg) {