From a5a3e737bbdfe7fd3c08af494e2e8b10fc113881 Mon Sep 17 00:00:00 2001 From: Jonathan Moore Liles Date: Tue, 13 May 2008 16:40:18 -0500 Subject: [PATCH] Improve BBT clock display. --- Timeline/Clock.H | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Timeline/Clock.H b/Timeline/Clock.H index b4ffb78..c2587e6 100644 --- a/Timeline/Clock.H +++ b/Timeline/Clock.H @@ -96,7 +96,7 @@ public: { 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 ); }