HDB: Fix song 2 fading volume

This commit is contained in:
Strangerke 2019-09-07 00:18:39 +02:00
parent 46e2f0bec9
commit 220ef998bb

View File

@ -1475,7 +1475,7 @@ void Sound::setMusicVolume(int volume) {
}
if (_song2.playing) {
if (_song2.fadingIn)
_song1.fadeInVol = volume;
_song2.fadeInVol = volume;
if (!_song2.fadingOut)
g_hdb->_mixer->setChannelVolume(_song2.handle, volume);
}