diff options
-rw-r--r-- | engines/fullpipe/statics.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/fullpipe/statics.cpp b/engines/fullpipe/statics.cpp index db15ee4cf3..cb23b60c24 100644 --- a/engines/fullpipe/statics.cpp +++ b/engines/fullpipe/statics.cpp @@ -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; } |