diff options
-rw-r--r-- | engines/cruise/sound.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/engines/cruise/sound.cpp b/engines/cruise/sound.cpp index cef67385f9..cc9a17eb9a 100644 --- a/engines/cruise/sound.cpp +++ b/engines/cruise/sound.cpp @@ -342,9 +342,7 @@ void AdLibSoundDriver::adjustVolume(int channel, int volume) { volume = 0; } volume += volume / 4; - if (volume > 127) { - volume = 127; - } + // The higher possible value for volume is 100 int volAdjust = (channel == 4) ? _sfxVolume : _musicVolume; volume = (volume * volAdjust) / 128; |