mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-03 15:21:40 +00:00
I believe the setVolume() function has to be guarded by a mutex. (I added this to
the Tinsel engine a while back to fix mysterious problems, but forgot to add it elsewhere.) Maybe this will fix the mysterious IHNM crashes, as well? svn-id: r34048
This commit is contained in:
parent
9549cbee7f
commit
eb35835f5e
@ -63,6 +63,8 @@ void MusicPlayer::setVolume(int volume) {
|
||||
|
||||
_masterVolume = volume;
|
||||
|
||||
Common::StackLock lock(_mutex);
|
||||
|
||||
for (int i = 0; i < 16; ++i) {
|
||||
if (_channel[i]) {
|
||||
_channel[i]->volume(_channelVolume[i] * _masterVolume / 255);
|
||||
|
@ -249,6 +249,8 @@ void MusicPlayer::setVolume(int volume) {
|
||||
|
||||
_masterVolume = volume;
|
||||
|
||||
Common::StackLock lock(_mutex);
|
||||
|
||||
for (int i = 0; i < 16; ++i) {
|
||||
if (_channel[i]) {
|
||||
_channel[i]->volume(_channelVolume[i] * _masterVolume / 255);
|
||||
|
Loading…
x
Reference in New Issue
Block a user