From 7c4a42127663f43cdf13ce2b8a2985ad53414068 Mon Sep 17 00:00:00 2001 From: Strangerke Date: Wed, 1 May 2013 20:23:08 +0200 Subject: HOPKINS: Remove double comma in animation sequences --- engines/hopkins/objects.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/engines/hopkins/objects.cpp b/engines/hopkins/objects.cpp index 6a26f88c86..d94e22bdf3 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); -- cgit v1.2.3