diff options
| -rw-r--r-- | engines/fullpipe/statics.cpp | 16 | 
1 files changed, 8 insertions, 8 deletions
| diff --git a/engines/fullpipe/statics.cpp b/engines/fullpipe/statics.cpp index 1f25bfb46e..1e43720c32 100644 --- a/engines/fullpipe/statics.cpp +++ b/engines/fullpipe/statics.cpp @@ -859,15 +859,15 @@ void StaticANIObject::update(int counterdiff) {  						}  					}  				} -				if (!_movement) -					return; - -				_stepArray.getCurrPoint(&point); -				setOXY(point.x + _ox, point.y + _oy); -				_stepArray.gotoNextPoint(); -				if (_someDynamicPhaseIndex == _movement->_currDynamicPhaseIndex) -					adjustSomeXY();  			} +			if (!_movement) +				return; + +			_stepArray.getCurrPoint(&point); +			setOXY(point.x + _ox, point.y + _oy); +			_stepArray.gotoNextPoint(); +			if (_someDynamicPhaseIndex == _movement->_currDynamicPhaseIndex) +				adjustSomeXY();  		} else if (_flags & 0x20) {  			_flags ^= 0x20;  			_flags |= 1; | 
