aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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) {