diff options
-rw-r--r-- | scumm/imuse.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scumm/imuse.cpp b/scumm/imuse.cpp index 8a06d3b242..a7aa8a13da 100644 --- a/scumm/imuse.cpp +++ b/scumm/imuse.cpp @@ -1449,7 +1449,8 @@ int IMuseInternal::set_master_volume_intern(uint vol) _master_volume = vol; for (int i = 0; i != 8; i++) _channel_volume_eff[i] = (_channel_volume[i] + 1) * vol >> 7; - update_volumes(); + if (!_paused) + update_volumes(); return 0; } |