mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-15 19:16:40 +01:00
Fix uninitialised variable in BBT maths.
git-svn-id: svn://localhost/ardour2/branches/3.0@6069 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
c3d8d38f7f
commit
c4c25e19bc
1 changed files with 1 additions and 1 deletions
|
|
@ -1688,7 +1688,7 @@ BBT_Time
|
|||
TempoMap::bbt_add (const BBT_Time& start, const BBT_Time& other, const TempoMetric& metric) const
|
||||
{
|
||||
BBT_Time result = start;
|
||||
BBT_Time op = op;
|
||||
BBT_Time op = other;
|
||||
uint32_t ticks = result.ticks + op.ticks;
|
||||
|
||||
if (ticks >= Meter::ticks_per_beat) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue