diff options
author | Strangerke | 2013-05-01 20:14:19 +0200 |
---|---|---|
committer | Strangerke | 2013-05-01 20:14:19 +0200 |
commit | 7e0ff980f43e6cb9cba097b336eecd6606180ca7 (patch) | |
tree | 6c77685b8bacf051ee5ecfa946da3ab87c5d419e /engines | |
parent | 0d1b8211976f604f1a5f5abcbd5f4dc44aecaa9e (diff) | |
download | scummvm-rg350-7e0ff980f43e6cb9cba097b336eecd6606180ca7.tar.gz scummvm-rg350-7e0ff980f43e6cb9cba097b336eecd6606180ca7.tar.bz2 scummvm-rg350-7e0ff980f43e6cb9cba097b336eecd6606180ca7.zip |
HOPKINS: Fix bug #3612409 - Crash due to original bug in animation sequence
Diffstat (limited to 'engines')
-rw-r--r-- | engines/hopkins/objects.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/hopkins/objects.cpp b/engines/hopkins/objects.cpp index 6a2f4eb9f4..6a26f88c86 100644 --- a/engines/hopkins/objects.cpp +++ b/engines/hopkins/objects.cpp @@ -2934,7 +2934,7 @@ void ObjectsManager::doActionDiagRight(int idx) { showSpecialActionAnimation(_gestureBuf, "17,16,15,-1,", 8); break; case 7: - showSpecialActionAnimationWithFlip(_gestureBuf, "15,16,17,18,19,20-1,", 8, false); + showSpecialActionAnimationWithFlip(_gestureBuf, "15,16,17,18,19,20,-1,", 8, false); break; case 8: showSpecialActionAnimation(_gestureBuf, "19,18,17,16,15,-1,", 8); |