aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--engines/titanic/sound/music_room_instrument.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/titanic/sound/music_room_instrument.cpp b/engines/titanic/sound/music_room_instrument.cpp
index 5e7bd9bb8c..b92329850b 100644
--- a/engines/titanic/sound/music_room_instrument.cpp
+++ b/engines/titanic/sound/music_room_instrument.cpp
@@ -234,7 +234,7 @@ void CMusicRoomInstrument::update(int val) {
double tempVal = 46.0 - ((double)(val - 14) * 1.43);
int frameNum = _field4C;
- int frameNum1 = (tempVal - frameNum) * 0.25;
+ int frameNum1 = (int)((tempVal - frameNum) * 0.25);
_gameObjects[1]->playMovie(frameNum1, frameNum1, MOVIE_STOP_PREVIOUS);
frameNum += frameNum1;