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

thebluegr at users.sourceforge.net thebluegr at users.sourceforge.net
Wed Aug 26 01:39:06 CEST 2009


Revision: 43747
          http://scummvm.svn.sourceforge.net/scummvm/?rev=43747&view=rev
Author:   thebluegr
Date:     2009-08-25 23:39:06 +0000 (Tue, 25 Aug 2009)

Log Message:
-----------
Disabled the signature checks for kNewWindow and kGetEvent, which are different in Mac versions. At least, Mac versions should start now

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

Modified: scummvm/trunk/engines/sci/engine/kernel.cpp
===================================================================
--- scummvm/trunk/engines/sci/engine/kernel.cpp	2009-08-25 23:36:20 UTC (rev 43746)
+++ scummvm/trunk/engines/sci/engine/kernel.cpp	2009-08-25 23:39:06 UTC (rev 43747)
@@ -205,7 +205,9 @@
 	/*10*/	DEFUN("CelHigh", kCelHigh, "iOiOi"),
 	/*11*/	DEFUN("DrawCel", kDrawCel, "iiiiii*"),
 	/*12*/	DEFUN("AddToPic", kAddToPic, "Il*"),
-	/*13*/	DEFUN("NewWindow", kNewWindow, "iiiiZRi*"),
+	// FIXME: signature check removed (set to .*) as kNewWindow is different in Mac versions
+	/*13*/	DEFUN("NewWindow", kNewWindow, "*."),
+	///*13*/	DEFUN("NewWindow", kNewWindow, "iiiiZRi*"),
 	/*14*/	DEFUN("GetPort", kGetPort, ""),
 	/*15*/	DEFUN("SetPort", kSetPort, "ii*"),
 	/*16*/	DEFUN("DisposeWindow", kDisposeWindow, "ii*"),
@@ -214,7 +216,9 @@
 	/*19*/	DEFUN("EditControl", kEditControl, "ZoZo"),
 	/*1a*/	DEFUN("TextSize", kTextSize, "rZrii*r*"),
 	/*1b*/	DEFUN("Display", kDisplay, ".*"),
-	/*1c*/	DEFUN("GetEvent", kGetEvent, "io"),
+	// FIXME: signature check removed (set to .*) as kGetEvent is different in Mac versions
+	/*1c*/	DEFUN("GetEvent", kGetEvent, ".*"),
+	///*1c*/	DEFUN("GetEvent", kGetEvent, "io"),
 	/*1d*/	DEFUN("GlobalToLocal", kGlobalToLocal, "o"),
 	/*1e*/	DEFUN("LocalToGlobal", kLocalToGlobal, "o"),
 	/*1f*/	DEFUN("MapKeyToDir", kMapKeyToDir, "o"),


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