13
0

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:
Carl Hetherington 2009-11-12 02:21:11 +00:00
parent c3d8d38f7f
commit c4c25e19bc

View File

@ -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) {