diff options
| author | Paul Gilbert | 2016-12-18 22:42:02 -0500 | 
|---|---|---|
| committer | Paul Gilbert | 2016-12-18 22:42:02 -0500 | 
| commit | b2d00993efaa2492584aa38026353246b57cf4dd (patch) | |
| tree | 91eb763624cb1b5dd9130c0c7b91d179d8fdd146 | |
| parent | 82421eac5f5defc3ee84b0d8f193dbb028c7565e (diff) | |
| download | scummvm-rg350-b2d00993efaa2492584aa38026353246b57cf4dd.tar.gz scummvm-rg350-b2d00993efaa2492584aa38026353246b57cf4dd.tar.bz2 scummvm-rg350-b2d00993efaa2492584aa38026353246b57cf4dd.zip  | |
TITANIC: Fix volume percentage for modes 3,4,5 in updateVolume
| -rw-r--r-- | engines/titanic/sound/sound_manager.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
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:  | 
