From 83cd7780629d26fb3f37ad11a7dd8ae9bf93a022 Mon Sep 17 00:00:00 2001 From: Paul Gilbert Date: Tue, 15 Aug 2017 22:00:05 -0400 Subject: TITANIC: Fix too short animations in Pellerator journeys --- engines/titanic/game/transport/pellerator.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engines/titanic/game/transport/pellerator.cpp b/engines/titanic/game/transport/pellerator.cpp index 92ce431567..4ef5314592 100644 --- a/engines/titanic/game/transport/pellerator.cpp +++ b/engines/titanic/game/transport/pellerator.cpp @@ -229,7 +229,7 @@ bool CPellerator::StatusChangeMsg(CStatusChangeMsg *msg) { } } } else { - for (--_destination; _destination > newDest; --_destination) { + for (--_destination; _destination >= newDest; --_destination) { switch (_destination) { case 0: case 1: -- cgit v1.2.3