[Scummvm-cvs-logs] SF.net SVN: scummvm: [30696] scummvm/trunk/engines/parallaction/exec_ns.cpp

peres001 at users.sourceforge.net peres001 at users.sourceforge.net
Tue Jan 29 10:58:22 CET 2008


Revision: 30696
          http://scummvm.svn.sourceforge.net/scummvm/?rev=30696&view=rev
Author:   peres001
Date:     2008-01-29 01:58:21 -0800 (Tue, 29 Jan 2008)

Log Message:
-----------
Fixed regression when displaying animation: the issue could only be noticed when characters appeared out of their sketches in the intro.

Modified Paths:
--------------
    scummvm/trunk/engines/parallaction/exec_ns.cpp

Modified: scummvm/trunk/engines/parallaction/exec_ns.cpp
===================================================================
--- scummvm/trunk/engines/parallaction/exec_ns.cpp	2008-01-29 09:37:03 UTC (rev 30695)
+++ scummvm/trunk/engines/parallaction/exec_ns.cpp	2008-01-29 09:58:21 UTC (rev 30696)
@@ -347,12 +347,12 @@
 		if (((v18->_flags & kFlagsActive) == 0) && (v18->_flags & kFlagsRemove))   {
 			v18->_flags &= ~kFlagsRemove;
 			v18->_oldPos.x = -1000;
-			_gfx->showGfxObj(obj, false);
 		}
 
 		if ((v18->_flags & kFlagsActive) && (v18->_flags & kFlagsRemove))	{
 			v18->_flags &= ~kFlagsActive;
 			v18->_flags |= kFlagsRemove;
+			_gfx->showGfxObj(obj, false);
 		}
 	}
 


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.




More information about the Scummvm-git-logs mailing list