aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Gilbert2017-02-09 19:11:48 -0500
committerPaul Gilbert2017-02-09 19:11:48 -0500
commitc9d0301016f8d67464c6b532874ce849ed2f49d3 (patch)
tree078fba902f863484f21c8ba846d9f033b81ca19a
parent441f940069a0e6a19e80148767d35e525cc384bd (diff)
downloadscummvm-rg350-c9d0301016f8d67464c6b532874ce849ed2f49d3.tar.gz
scummvm-rg350-c9d0301016f8d67464c6b532874ce849ed2f49d3.tar.bz2
scummvm-rg350-c9d0301016f8d67464c6b532874ce849ed2f49d3.zip
TITANIC: Fix setting correct instrument _pitchControl values
-rw-r--r--engines/titanic/sound/music_room_handler.cpp2
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) {