Skip to content
Snippets Groups Projects
Commit 03f134ff authored by Daniel Reinert's avatar Daniel Reinert :grimacing:
Browse files

Revert "do not store milliseconds"

This reverts commit 6b3cbf4b.
parent 44789050
No related branches found
No related tags found
No related merge requests found
......@@ -107,7 +107,7 @@ secofday_decode(double secondOfDay)
const int fullSeconds = (int) secondOfDay;
// time.ms = (int) lround((secondOfDay - fullSeconds) * 1000);
// time.ms = (short) lround((secondOfDay - fullSeconds) * 1000);
time.ms = (short) lround((secondOfDay - fullSeconds) * 1000);
const int hour = fullSeconds / 3600;
const int minute = fullSeconds / 60 - hour * 60;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment