Timeformat forgot about milliseconds

This commit is contained in:
Tim Holloway 2022-01-10 16:39:36 -05:00
parent 7d9ee67a86
commit 39faaaa3f8

View File

@ -25,7 +25,7 @@ public class TimeFormatter {
if (ltime == null) { if (ltime == null) {
return ""; return "";
} }
int time = ltime.intValue(); int time = ltime.intValue()/1000;
int dd, hh, mm, ss; int dd, hh, mm, ss;
ss = time % 60; ss = time % 60;
time /= 60; time /= 60;