Skip to content

Commit

Permalink
HOPKINS: Remove double comma in animation sequences
Browse files Browse the repository at this point in the history
  • Loading branch information
Strangerke committed May 1, 2013
1 parent 7e0ff98 commit 7c4a421
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions engines/hopkins/objects.cpp
Expand Up @@ -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);
Expand Down Expand Up @@ -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);
Expand Down

0 comments on commit 7c4a421

Please sign in to comment.