Tempo ramps - fix more namespace confusion

This commit is contained in:
nick_m 2016-02-13 04:23:02 +11:00
parent 36f04367df
commit a2495cdff3
2 changed files with 5 additions and 5 deletions

View file

@ -6552,7 +6552,7 @@ Editor::define_one_bar (framepos_t start, framepos_t end)
} else if (t.frame() == start) {
_session->tempo_map().change_existing_tempo_at (start, beats_per_minute, t.note_type());
} else {
_session->tempo_map().add_tempo (Tempo (beats_per_minute, t.note_type()), _session->tempo_map().beat_at_frame (start), TempoSection::Type::Constant);
_session->tempo_map().add_tempo (Tempo (beats_per_minute, t.note_type()), _session->tempo_map().beat_at_frame (start), TempoSection::Constant);
}
XMLNode& after (_session->tempo_map().get_state());