[pulse] round volume to integer

This commit is contained in:
Joerg T. (Mic92) 2011-09-01 16:08:02 +02:00 committed by Adrian C. (anrxc)
parent 18e1823ded
commit 25b375bd6b
1 changed files with 4 additions and 1 deletions

View File

@ -17,6 +17,9 @@ local string = {
format = string.format,
gmatch = string.gmatch
}
local math = {
floor = math.floor
}
-- }}}
@ -71,7 +74,7 @@ local function worker(format, sink)
local vol = tonumber(string.match(data, "set%-sink%-volume "..escape(sink).." (0x[%x]+)"))
if vol == nil then vol = 0 end
return { vol/0x10000*100, "on"}
return { math.floor(vol/0x10000*100), "on"}
end
-- }}}