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

m_kiewitz at users.sourceforge.net m_kiewitz at users.sourceforge.net
Thu Nov 5 08:27:37 CET 2009


Revision: 45683
          http://scummvm.svn.sourceforge.net/scummvm/?rev=45683&view=rev
Author:   m_kiewitz
Date:     2009-11-05 07:27:36 +0000 (Thu, 05 Nov 2009)

Log Message:
-----------
SCI/newgui: kDisposeWindow - changed to reflect actual sierra sci behaviour

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

Modified: scummvm/trunk/engines/sci/engine/kgraphics.cpp
===================================================================
--- scummvm/trunk/engines/sci/engine/kgraphics.cpp	2009-11-05 01:35:43 UTC (rev 45682)
+++ scummvm/trunk/engines/sci/engine/kgraphics.cpp	2009-11-05 07:27:36 UTC (rev 45683)
@@ -913,9 +913,9 @@
 
 reg_t kDisposeWindow(EngineState *s, int argc, reg_t *argv) {
 	int goner_nr = argv[0].toSint16();
-	bool reanimate = false;
+	bool reanimate = true;
 	if ((argc == 2) && (argv[1].isNull()))
-		reanimate = true;
+		reanimate = false;
 
 	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