From 02762524f5a1d308f25812113a55770f0335c361 Mon Sep 17 00:00:00 2001 From: Dave Reisner Date: Wed, 20 Aug 2014 13:31:43 -0400 Subject: Revert "pulse: use ceil() instead of floor() for volume percentages" This commit introduced a functional bug at the cost of attempting to fix a cosmetic one. This reverts commit 067f37d641ab7ae7171ea4bb362e723b0089e671. --- pulse.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pulse.cc b/pulse.cc index 1b498b0..1253c2d 100644 --- a/pulse.cc +++ b/pulse.cc @@ -77,7 +77,7 @@ static pa_cvolume* value_to_cvol(long value, pa_cvolume *cvol) { } static int volume_as_percent(const pa_cvolume* cvol) { - return pa_cvolume_avg(cvol) * 100.0 / PA_VOLUME_NORM + 0.5; + return pa_cvolume_avg(cvol) * 100.0 / PA_VOLUME_NORM; } static int xstrtol(const char *str, long *out) { -- cgit v1.2.3