fix buglets after some recent changes to editor tempodisplay

These were caught by msvc but not by gcc .Disappointing
This commit is contained in:
Paul Davis 2022-01-26 07:24:33 -07:00
parent 0496701a8f
commit 684ac0e42e
1 changed files with 2 additions and 2 deletions

View File

@ -356,7 +356,7 @@ Editor::draw_meter_marks ()
}
}
if ((mm == tempo_marks.end()) && (m != meters.end())) {
if ((mm == meter_marks.end()) && (m != meters.end())) {
while (m != meters.end()) {
make_meter_marker (&*m);
++m;
@ -410,7 +410,7 @@ Editor::draw_bbt_marks ()
}
}
if ((mm == tempo_marks.end()) && (m != bartimes.end())) {
if ((mm == bbt_marks.end()) && (m != bartimes.end())) {
while (m != bartimes.end()) {
make_meter_marker (&*m);
++m;