diff --git a/src/aosfxplayer.cpp b/src/aosfxplayer.cpp index 96b5d45..0775eb9 100644 --- a/src/aosfxplayer.cpp +++ b/src/aosfxplayer.cpp @@ -109,7 +109,7 @@ void AOSfxPlayer::setMuted(bool toggle) void AOSfxPlayer::updateInternalVolume() { - float volume = m_muted ? 0.0f : m_volume; + float volume = m_muted ? 0.0f : (m_volume * 0.01); for (int i = 0; i < STREAM_COUNT; ++i) { BASS_ChannelSetAttribute(m_stream[i], BASS_ATTRIB_VOL, volume);