[Scummvm-git-logs] scummvm master -> 83cd7780629d26fb3f37ad11a7dd8ae9bf93a022

dreammaster dreammaster at scummvm.org
Wed Aug 16 04:00:11 CEST 2017


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
83cd778062 TITANIC: Fix too short animations in Pellerator journeys


Commit: 83cd7780629d26fb3f37ad11a7dd8ae9bf93a022
    https://github.com/scummvm/scummvm/commit/83cd7780629d26fb3f37ad11a7dd8ae9bf93a022
Author: Paul Gilbert (dreammaster at scummvm.org)
Date: 2017-08-15T22:00:05-04:00

Commit Message:
TITANIC: Fix too short animations in Pellerator journeys

Changed paths:
    engines/titanic/game/transport/pellerator.cpp


diff --git a/engines/titanic/game/transport/pellerator.cpp b/engines/titanic/game/transport/pellerator.cpp
index 92ce431..4ef5314 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:





More information about the Scummvm-git-logs mailing list