From cda823ea63243df943daac5b2ee35e86fe43856c Mon Sep 17 00:00:00 2001 From: Max Horn Date: Sun, 6 Feb 2005 20:35:06 +0000 Subject: [PATCH] It's kMaxMixerVolume, not 256 (we might change it to 255 eventually) svn-id: r16747 --- sound/mixer.cpp | 2 +- sound/mixer.h | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/sound/mixer.cpp b/sound/mixer.cpp index cc74c745898..78a2e9f7dd8 100644 --- a/sound/mixer.cpp +++ b/sound/mixer.cpp @@ -480,7 +480,7 @@ void Channel::mix(int16 *data, uint len) { // slightly odd divisor: the 255 reflects the fact that the maximal // value for _volume is 255, while the 127 is there because the // balance value ranges from -127 to 127. The mixer (music/sound) - // volume is in the range 0 - 256. + // volume is in the range 0 - kMaxMixerVolume. // Hence, the vol_l/vol_r values will be in that range, too int vol = _mixer->getVolumeForSoundType(_type) * _volume; diff --git a/sound/mixer.h b/sound/mixer.h index 898ed55f137..b75edcb4b05 100644 --- a/sound/mixer.h +++ b/sound/mixer.h @@ -255,14 +255,14 @@ public: /** * Set the volume for the given sound type. * - * @param volume the new global volume, 0-256 + * @param volume the new global volume, 0-kMaxMixerVolume */ void setVolumeForSoundType(SoundType type, int volume); /** * Query the global volume. * - * @return the global music volume, 0-256 + * @return the global music volume, 0-kMaxMixerVolume */ int getVolumeForSoundType(SoundType type) const;