diff options
Diffstat (limited to 'tests/time_test.cpp')
-rw-r--r-- | tests/time_test.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/time_test.cpp b/tests/time_test.cpp index 4757f6b..2b53207 100644 --- a/tests/time_test.cpp +++ b/tests/time_test.cpp @@ -15,18 +15,18 @@ main() double in_double; cout << "Beats: "; cin >> in_double; - + TimeStamp t(unit, (uint32_t)in_double, (uint32_t)((in_double - (uint32_t)in_double) * unit.ppt())); cout << "\tSeconds: "; cout << ts.beats_to_seconds(t); cout << endl; - + cout << "\tTicks: "; cout << ts.beats_to_ticks(t); cout << endl; - return 0; + return 0; } |