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

thebluegr at users.sourceforge.net thebluegr at users.sourceforge.net
Thu Aug 27 17:08:21 CEST 2009


Revision: 43771
          http://scummvm.svn.sourceforge.net/scummvm/?rev=43771&view=rev
Author:   thebluegr
Date:     2009-08-27 15:08:21 +0000 (Thu, 27 Aug 2009)

Log Message:
-----------
Removed the signature check from GetSaveDir in order to let the scripts in GK progress a bit further

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-27 12:31:42 UTC (rev 43770)
+++ scummvm/trunk/engines/sci/engine/kernel.cpp	2009-08-27 15:08:21 UTC (rev 43771)
@@ -299,7 +299,9 @@
 	/*65*/	DEFUN("CoordPri", kCoordPri, "i"),
 	/*66*/	DEFUN("StrAt", kStrAt, "rii*"),
 	/*67*/	DEFUN("DeviceInfo", kDeviceInfo, "i.*"),
-	/*68*/	DEFUN("GetSaveDir", kGetSaveDir, ""),
+	// FIXME: signature check removed (set to .*), as this function accepts a parameter in SCI32 games
+	/*68*/	DEFUN("GetSaveDir", kGetSaveDir, ".*"),
+	///*68*/	DEFUN("GetSaveDir", kGetSaveDir, ""),
 	/*69*/	DEFUN("CheckSaveGame", kCheckSaveGame, ".*"),
 	/*6a*/	DEFUN("ShakeScreen", kShakeScreen, "ii*"),
 	/*6b*/	DEFUN("FlushResources", kFlushResources, "i"),
@@ -322,9 +324,11 @@
 	/*(?)*/	DEFUN("IsItSkip", kIsItSkip, "iiiii"),
 	/*7b*/	DEFUN("StrSplit", kStrSplit, "rrZr"),
 
-	// Non-experimental Functions without a fixed ID
+	// Non-experimental functions without a fixed ID
 	DEFUN("CosMult", kTimesCos, "ii"),
 	DEFUN("SinMult", kTimesSin, "ii"),
+
+	// Misc functions
 	/*(?)*/	DEFUN("CosDiv", kCosDiv, "ii"),
 	/*(?)*/	DEFUN("PriCoord", kPriCoord, "i"),
 	/*(?)*/	DEFUN("SinDiv", kSinDiv, "ii"),


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