Skip to content

Commit

Permalink
FULLPIPE: Fix StaticANIObject::getMovementIdById
Browse files Browse the repository at this point in the history
  • Loading branch information
Retro-Junk authored and sev- committed Sep 17, 2016
1 parent 83a82a9 commit f67bbd9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion engines/fullpipe/statics.cpp
Expand Up @@ -440,7 +440,7 @@ int StaticANIObject::getMovementIdById(int itemId) {

if (mov->_currMovement) {
if (mov->_id == itemId)
return mov->_id;
return mov->_currMovement->_id;

if (mov->_currMovement->_id == itemId)
return mov->_id;
Expand Down

0 comments on commit f67bbd9

Please sign in to comment.