Timeformat forgot about milliseconds
This commit is contained in:
parent
7d9ee67a86
commit
39faaaa3f8
|
@ -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;
|
||||||
|
|
Loading…
Reference in New Issue
Block a user