summaryrefslogtreecommitdiff
path: root/libs/ardour/tempo.cc
diff options
context:
space:
mode:
authornick_m <mainsbridge@gmail.com>2016-11-09 01:30:32 +1100
committernick_m <mainsbridge@gmail.com>2016-11-11 03:37:08 +1100
commite8042f584367550843306cc1c11c25d796219a37 (patch)
treee29b3876cccb80fcd1bcf2f9c845d3f9f7331325 /libs/ardour/tempo.cc
parent5aafb0b53486a92a4e966510388d9c7cfbb799fb (diff)
use note_type explicitly when constructing a Tempo in the hope that others follow.
- should be a no-op
Diffstat (limited to 'libs/ardour/tempo.cc')
-rw-r--r--libs/ardour/tempo.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/ardour/tempo.cc b/libs/ardour/tempo.cc
index bd23e02ebd..ad894708f8 100644
--- a/libs/ardour/tempo.cc
+++ b/libs/ardour/tempo.cc
@@ -45,7 +45,7 @@ using Timecode::BBT_Time;
/* _default tempo is 4/4 qtr=120 */
Meter TempoMap::_default_meter (4.0, 4.0);
-Tempo TempoMap::_default_tempo (120.0);
+Tempo TempoMap::_default_tempo (120.0, 4.0);
framepos_t
MetricSection::frame_at_minute (const double& time) const