Skip to content

Commit

Permalink
FULLPIPE: Fix long standing bug with animation
Browse files Browse the repository at this point in the history
  • Loading branch information
sev- committed Sep 6, 2013
1 parent 0dc4914 commit 5c759da
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions engines/fullpipe/statics.cpp
Expand Up @@ -1251,8 +1251,8 @@ bool Movement::load(MfcArchive &file, StaticANIObject *ani) {
}

Common::Point *Movement::getCurrDynamicPhaseXY(Common::Point &p) {
p.x = _currDynamicPhase->_x;
p.y = _currDynamicPhase->_y;
p.x = _currDynamicPhase->_someX;
p.y = _currDynamicPhase->_someY;

return &p;
}
Expand Down

0 comments on commit 5c759da

Please sign in to comment.