[Scummvm-cvs-logs] scummvm master -> 7c4a42127663f43cdf13ce2b8a2985ad53414068

Strangerke Strangerke at scummvm.org
Wed May 1 20:24:41 CEST 2013


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:
7c4a421276 HOPKINS: Remove double comma in animation sequences


Commit: 7c4a42127663f43cdf13ce2b8a2985ad53414068
    https://github.com/scummvm/scummvm/commit/7c4a42127663f43cdf13ce2b8a2985ad53414068
Author: Strangerke (strangerke at scummvm.org)
Date: 2013-05-01T11:23:08-07:00

Commit Message:
HOPKINS: Remove double comma in animation sequences

Changed paths:
    engines/hopkins/objects.cpp



diff --git a/engines/hopkins/objects.cpp b/engines/hopkins/objects.cpp
index 6a26f88..d94e22b 100644
--- a/engines/hopkins/objects.cpp
+++ b/engines/hopkins/objects.cpp
@@ -2890,7 +2890,7 @@ void ObjectsManager::doActionRight(int idx) {
 		showSpecialActionAnimationWithFlip(_gestureBuf, "23,24,25,-1,", 8, false);
 		break;
 	case 6:
-		showSpecialActionAnimation(_gestureBuf, "24,,23,-1,", 8);
+		showSpecialActionAnimation(_gestureBuf, "24,23,-1,", 8);
 		break;
 	case 7:
 		showSpecialActionAnimationWithFlip(_gestureBuf, "23,24,25,26,27,-1,", 8, false);
@@ -3036,7 +3036,7 @@ void ObjectsManager::doActionLeft(int idx) {
 		showSpecialActionAnimationWithFlip(_gestureBuf, "23,24,25,-1,", 8, true);
 		break;
 	case 6:
-		showSpecialActionAnimation(_gestureBuf, "24,,23,-1,", 8);
+		showSpecialActionAnimation(_gestureBuf, "24,23,-1,", 8);
 		break;
 	case 7:
 		showSpecialActionAnimationWithFlip(_gestureBuf, "23,24,25,26,27,-1,", 8, true);






More information about the Scummvm-git-logs mailing list