[Scummvm-cvs-logs] scummvm master -> 03cf47008258629645087a9df68066f990b674a6

sev- sev at scummvm.org
Thu Aug 25 09:15:05 CEST 2016


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
03cf470082 FULLPIPE: Fix if() condition


Commit: 03cf47008258629645087a9df68066f990b674a6
    https://github.com/scummvm/scummvm/commit/03cf47008258629645087a9df68066f990b674a6
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2016-08-25T09:14:47+02:00

Commit Message:
FULLPIPE: Fix if() condition

Changed paths:
    engines/fullpipe/statics.cpp



diff --git a/engines/fullpipe/statics.cpp b/engines/fullpipe/statics.cpp
index 1ba211c..a5bbf21 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;






More information about the Scummvm-git-logs mailing list