Browse Source

Fix format for HMS clock.

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

+ 1
- 1
Timeline/Clock.H View File

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

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

static void


Loading…
Cancel
Save