aboutsummaryrefslogtreecommitdiff
path: root/sound
diff options
context:
space:
mode:
authorMax Horn2003-08-02 02:12:26 +0000
committerMax Horn2003-08-02 02:12:26 +0000
commit02d061598c1a808264ba732fbda8631644cce88f (patch)
tree48138012d83155467761cdadb64216ee7dcc7177 /sound
parent6da96e17c0478090b67b28ef0883486fe27ace80 (diff)
downloadscummvm-rg350-02d061598c1a808264ba732fbda8631644cce88f.tar.gz
scummvm-rg350-02d061598c1a808264ba732fbda8631644cce88f.tar.bz2
scummvm-rg350-02d061598c1a808264ba732fbda8631644cce88f.zip
fix ChannelMP3CDMusic volume, too :-)
svn-id: r9393
Diffstat (limited to 'sound')
-rw-r--r--sound/mixer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/mixer.cpp b/sound/mixer.cpp
index b062a6fb62..18111ad971 100644
--- a/sound/mixer.cpp
+++ b/sound/mixer.cpp
@@ -1032,7 +1032,7 @@ void ChannelMP3CDMusic::mix(int16 *data, uint len) {
return;
}
- const int volume = _mixer->getVolume();
+ const int volume = _mixer->getMusicVolume();
st_size_t tmpLen = len;
_converter->flow(*_input, data, &tmpLen, volume);
#else