Improve BBT clock display.

This commit is contained in:
Jonathan Moore Liles 2008-05-13 16:40:18 -05:00
parent 6dd66f328f
commit a5a3e737bb
1 changed files with 1 additions and 1 deletions

View File

@ -96,7 +96,7 @@ public:
{ {
struct BBT bbt = timeline->solve_tempomap( frame ); struct BBT bbt = timeline->solve_tempomap( frame );
snprintf( dst, n, "%03d:%1d:%04d", bbt.bar + 1, bbt.beat + 1 , bbt.tick ); snprintf( dst, n, "%03d|%1d|%04d", bbt.bar + 1, bbt.beat + 1, bbt.tick );
} }