diff options
Diffstat (limited to 'scumm')
-rw-r--r-- | scumm/imuse.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/imuse.cpp b/scumm/imuse.cpp index 826c4127b2..7a6742fbd4 100644 --- a/scumm/imuse.cpp +++ b/scumm/imuse.cpp @@ -1271,7 +1271,7 @@ int IMuseInternal::set_master_volume_intern(uint vol) if (vol > 127) return -1; - if (_music_volume > 0) + if (_music_volume >= 0) vol = vol * _music_volume / 128; _master_volume = vol; |