Temporal: avoid recursive descent in TempoMap::quarters_at (timepos_t)

This commit is contained in:
Paul Davis
2020-12-07 12:28:21 -07:00
parent 9412130c01
commit 5987376afc

View File

@@ -2081,7 +2081,7 @@ TempoMap::quarters_at (timepos_t const & pos) const
/* a bit redundant */
return pos.beats();
}
return quarters_at (pos);
return quarters_at_superclock (pos.superclocks());
}
Temporal::Beats