[Scummvm-cvs-logs] SF.net SVN: scummvm:[47300] scummvm/trunk/engines/sci/engine/kgraphics.cpp

m_kiewitz at users.sourceforge.net m_kiewitz at users.sourceforge.net
Thu Jan 14 21:56:46 CET 2010


Revision: 47300
          http://scummvm.svn.sourceforge.net/scummvm/?rev=47300&view=rev
Author:   m_kiewitz
Date:     2010-01-14 20:56:46 +0000 (Thu, 14 Jan 2010)

Log Message:
-----------
SCI: another change to reanimate behaviour of kDisposeWindow

Modified Paths:
--------------
    scummvm/trunk/engines/sci/engine/kgraphics.cpp

Modified: scummvm/trunk/engines/sci/engine/kgraphics.cpp
===================================================================
--- scummvm/trunk/engines/sci/engine/kgraphics.cpp	2010-01-14 20:53:37 UTC (rev 47299)
+++ scummvm/trunk/engines/sci/engine/kgraphics.cpp	2010-01-14 20:56:46 UTC (rev 47300)
@@ -921,9 +921,9 @@
 
 reg_t kDisposeWindow(EngineState *s, int argc, reg_t *argv) {
 	int goner_nr = argv[0].toSint16();
-	bool reanimate = true;
-	if ((argc == 2) && (!argv[1].isNull()))
-		reanimate = false;
+	bool reanimate = false;
+	if ((argc == 2) && (argv[1].isNull()))
+		reanimate = true;
 
 	s->_gui->disposeWindow(goner_nr, reanimate);
 	return s->r_acc;


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