diff options
author | Eugene Sandulenko | 2013-09-02 11:16:28 +0300 |
---|---|---|
committer | Eugene Sandulenko | 2013-09-06 14:51:23 +0300 |
commit | 5c759da7a3476ad0bf6af09887b7ded248950cbd (patch) | |
tree | 70aab470536e9ec9fc6b18f5500976911ce21306 /engines | |
parent | 0dc4914cc4305174102936dc94d27fd192414837 (diff) | |
download | scummvm-rg350-5c759da7a3476ad0bf6af09887b7ded248950cbd.tar.gz scummvm-rg350-5c759da7a3476ad0bf6af09887b7ded248950cbd.tar.bz2 scummvm-rg350-5c759da7a3476ad0bf6af09887b7ded248950cbd.zip |
FULLPIPE: Fix long standing bug with animation
Diffstat (limited to 'engines')
-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; } |