diff options
author | Max Kellermann <max@duempel.org> | 2009-07-06 21:51:24 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-07-06 21:51:24 +0200 |
commit | 90472526e00c671f76d78341b5e474fcf069d41e (patch) | |
tree | 1599ac0a94d11867558e0cb38ca2eaf3b3831848 /src/mixer_all.h | |
parent | 206392ad1a9f4aa22d11719fb19f036c9f860272 (diff) | |
download | mpd-90472526e00c671f76d78341b5e474fcf069d41e.tar.gz mpd-90472526e00c671f76d78341b5e474fcf069d41e.tar.xz mpd-90472526e00c671f76d78341b5e474fcf069d41e.zip |
volume, mixer: removed the "relative" parameter
Since the "volume" command has been removed, nobody uses relative
volumes anymore.
Diffstat (limited to 'src/mixer_all.h')
-rw-r--r-- | src/mixer_all.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/mixer_all.h b/src/mixer_all.h index 66c4988de..1f6e016df 100644 --- a/src/mixer_all.h +++ b/src/mixer_all.h @@ -37,11 +37,10 @@ mixer_all_get_volume(void); /** * Sets the volume on all available mixers. * - * @param volume the volume (range 0..100 or -100..100 if #relative) - * @param relative if true, then the #volume is added to the current value + * @param volume the volume (range 0..100) * @return true on success, false on failure */ bool -mixer_all_set_volume(int volume, bool relative); +mixer_all_set_volume(int volume); #endif |