diff options
author | Paul Gilbert | 2017-02-09 19:11:48 -0500 |
---|---|---|
committer | Paul Gilbert | 2017-02-09 19:11:48 -0500 |
commit | c9d0301016f8d67464c6b532874ce849ed2f49d3 (patch) | |
tree | 078fba902f863484f21c8ba846d9f033b81ca19a /engines | |
parent | 441f940069a0e6a19e80148767d35e525cc384bd (diff) | |
download | scummvm-rg350-c9d0301016f8d67464c6b532874ce849ed2f49d3.tar.gz scummvm-rg350-c9d0301016f8d67464c6b532874ce849ed2f49d3.tar.bz2 scummvm-rg350-c9d0301016f8d67464c6b532874ce849ed2f49d3.zip |
TITANIC: Fix setting correct instrument _pitchControl values
Diffstat (limited to 'engines')
-rw-r--r-- | engines/titanic/sound/music_room_handler.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/titanic/sound/music_room_handler.cpp b/engines/titanic/sound/music_room_handler.cpp index 8c0ac88ab6..cbef0ce02b 100644 --- a/engines/titanic/sound/music_room_handler.cpp +++ b/engines/titanic/sound/music_room_handler.cpp @@ -149,7 +149,7 @@ void CMusicRoomHandler::setDirectionControl2(MusicInstrument instrument, bool va void CMusicRoomHandler::setPitchControl(MusicInstrument instrument, int value) { if (instrument >= BELLS && instrument <= BASS && value >= -2 && value <= 2) - _array1[instrument]._pitchControl = value; + _array1[instrument]._pitchControl = value * 3; } void CMusicRoomHandler::setSpeedControl(MusicInstrument instrument, int value) { |