aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStrangerke2013-05-01 20:23:08 +0200
committerStrangerke2013-05-01 20:23:08 +0200
commit7c4a42127663f43cdf13ce2b8a2985ad53414068 (patch)
tree7f9cb0b124ee889550398f39070021448f330f0e
parent7e0ff980f43e6cb9cba097b336eecd6606180ca7 (diff)
downloadscummvm-rg350-7c4a42127663f43cdf13ce2b8a2985ad53414068.tar.gz
scummvm-rg350-7c4a42127663f43cdf13ce2b8a2985ad53414068.tar.bz2
scummvm-rg350-7c4a42127663f43cdf13ce2b8a2985ad53414068.zip
HOPKINS: Remove double comma in animation sequences
-rw-r--r--engines/hopkins/objects.cpp4
1 files 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);