nutempo #warning removal

This commit is contained in:
Paul Davis 2021-01-15 00:59:12 -07:00
parent 5974f68250
commit 6f861c63b5
1 changed files with 6 additions and 7 deletions

View File

@ -601,13 +601,12 @@ EditorSources::format_position (timepos_t const & pos, char* buf, size_t bufsize
switch (ARDOUR_UI::instance()->primary_clock->mode ()) {
case AudioClock::BBT:
#warning NUTEMPO needs tempo map BBT API
// bbt = _session->tempo_map().bbt_at_sample (pos);
// if (onoff) {
// snprintf (buf, bufsize, "%03d|%02d|%04d" , bbt.bars, bbt.beats, bbt.ticks);
// } else {
// snprintf (buf, bufsize, "(%03d|%02d|%04d)" , bbt.bars, bbt.beats, bbt.ticks);
// }
bbt = Temporal::TempoMap::use()->bbt_at (pos);
if (onoff) {
snprintf (buf, bufsize, "%03d|%02d|%04d" , bbt.bars, bbt.beats, bbt.ticks);
} else {
snprintf (buf, bufsize, "(%03d|%02d|%04d)" , bbt.bars, bbt.beats, bbt.ticks);
}
break;
case AudioClock::MinSec: