aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--main.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/main.js b/main.js
index 893e7a7..c587806 100644
--- a/main.js
+++ b/main.js
@@ -29,7 +29,7 @@ function time_format(t)
{
const h = ~~(t / 3600);
const m = ~~((t % 3600) / 60);
- const s = ~~t % 60;
+ const s = t % 60;
let ret = "";
if (h > 0)