Browse Source

Fix printf format in clock code.

tags/non-daw-v1.1.0
Jonathan Moore Liles 17 years ago
parent
commit
73282bbf4d
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      Timeline/Clock.H

+ 1
- 1
Timeline/Clock.H View File

@@ -62,7 +62,7 @@ public:
int M = S / 60; S -= M * 60;
int H = M / 60; M -= H * 60;

snprintf( dst, n, "%02d:%02d:%02.1f", H, M, S );
snprintf( dst, n, "%02d:%02d:%04.1f", H, M, S );
}




Loading…
Cancel
Save