diff options
-rw-r--r-- | ponymix.cc | 4 | ||||
-rw-r--r-- | pulse.cc | 2 |
2 files changed, 3 insertions, 3 deletions
@@ -335,7 +335,7 @@ static int IncreaseVolume(PulseClient& ponymix, int, char* argv[]) { errx(1, "error: failed to convert string to integer: %s", argv[0]); } - if (!ponymix.SetVolume(*device, device->Volume() + delta)) return 1; + if (!ponymix.IncreaseVolume(*device, delta)) return 1; printf("%d\n", device->Volume()); @@ -352,7 +352,7 @@ static int DecreaseVolume(PulseClient& ponymix, int, char* argv[]) { errx(1, "error: failed to convert string to integer: %s", argv[0]); } - if (!ponymix.SetVolume(*device, device->Volume() - delta)) return 1; + if (!ponymix.DecreaseVolume(*device, delta)) return 1; printf("%d\n", device->Volume()); @@ -358,7 +358,7 @@ bool PulseClient::SetVolume(Device& device, long volume) { int success; if (device.ops_.SetVolume == nullptr) { - warnx("device does not support setting balance."); + warnx("device does not support setting volume."); return false; } |