smapi: round remaining hour estimation

This commit is contained in:
Oleg Hahm 2015-05-17 22:58:52 +02:00
parent 161abc46ab
commit f78d451706
1 changed files with 1 additions and 1 deletions

View File

@ -87,7 +87,7 @@ function smapi:battery(name)
return "N/A"
end
local hrs = mins_left / 60
local hrs = math.floor(mins_left / 60)
local min = mins_left % 60
return string.format("%02d:%02d", hrs, min)
end