diff options
author | Dave Reisner <dreisner@archlinux.org> | 2014-08-20 13:31:43 -0400 |
---|---|---|
committer | Dave Reisner <dreisner@archlinux.org> | 2014-08-20 13:31:43 -0400 |
commit | 02762524f5a1d308f25812113a55770f0335c361 (patch) | |
tree | 249a96a1deebb4fa6aeea622335fc2b59018bd09 | |
parent | 0b37cc5e37bbe0898505edfd4faea9981888bd07 (diff) | |
download | mirror-ponymix-02762524f5a1d308f25812113a55770f0335c361.tar.gz mirror-ponymix-02762524f5a1d308f25812113a55770f0335c361.tar.bz2 mirror-ponymix-02762524f5a1d308f25812113a55770f0335c361.zip |
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.
-rw-r--r-- | pulse.cc | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) { |