mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-06 05:35:47 +01:00
temporal: NO-OP (tiny variable rename)
This commit is contained in:
parent
d94382f8a3
commit
3513debba8
1 changed files with 4 additions and 4 deletions
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue