diff options
author | Eugene Sandulenko | 2016-08-25 09:14:47 +0200 |
---|---|---|
committer | Eugene Sandulenko | 2016-08-25 09:14:47 +0200 |
commit | 03cf47008258629645087a9df68066f990b674a6 (patch) | |
tree | fc36bbe73d5af595d825251ae967a03a8b1e53c1 | |
parent | 5a6428aac2996926a2d71beabc1e4368397c5584 (diff) | |
download | scummvm-rg350-03cf47008258629645087a9df68066f990b674a6.tar.gz scummvm-rg350-03cf47008258629645087a9df68066f990b674a6.tar.bz2 scummvm-rg350-03cf47008258629645087a9df68066f990b674a6.zip |
FULLPIPE: Fix if() condition
-rw-r--r-- | engines/fullpipe/statics.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/fullpipe/statics.cpp b/engines/fullpipe/statics.cpp index 1ba211ce54..a5bbf21151 100644 --- a/engines/fullpipe/statics.cpp +++ b/engines/fullpipe/statics.cpp @@ -968,7 +968,7 @@ void StaticANIObject::stopAnim_maybe() { if (_flags & 0x40) { if (!_movement->_currMovement) { - if (!_movement->_currDynamicPhaseIndex) + if (_movement->_currDynamicPhaseIndex) goto L11; L8: _statics = _movement->_staticsObj1; |