From b2d00993efaa2492584aa38026353246b57cf4dd Mon Sep 17 00:00:00 2001 From: Paul Gilbert Date: Sun, 18 Dec 2016 22:42:02 -0500 Subject: TITANIC: Fix volume percentage for modes 3,4,5 in updateVolume --- engines/titanic/sound/sound_manager.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'engines/titanic') diff --git a/engines/titanic/sound/sound_manager.cpp b/engines/titanic/sound/sound_manager.cpp index 5f8e53caf3..a3cdae9635 100644 --- a/engines/titanic/sound/sound_manager.cpp +++ b/engines/titanic/sound/sound_manager.cpp @@ -443,7 +443,7 @@ void QSoundManager::updateVolume(int channel, uint panRate) { case 3: case 4: case 5: - volume = (24525 * volume) / 100; + volume = (75 * volume) / 100; break; case 6: case 7: -- cgit v1.2.3