[Scummvm-cvs-logs] SF.net SVN: scummvm:[38357] scummvm/trunk/engines/sci/engine/savegame.cfsml

wjpalenstijn at users.sourceforge.net wjpalenstijn at users.sourceforge.net
Mon Feb 16 10:21:37 CET 2009


Revision: 38357
          http://scummvm.svn.sourceforge.net/scummvm/?rev=38357&view=rev
Author:   wjpalenstijn
Date:     2009-02-16 09:21:36 +0000 (Mon, 16 Feb 2009)

Log Message:
-----------
replace one more instance of strcasecmp by scumm_stricmp

Modified Paths:
--------------
    scummvm/trunk/engines/sci/engine/savegame.cfsml

Modified: scummvm/trunk/engines/sci/engine/savegame.cfsml
===================================================================
--- scummvm/trunk/engines/sci/engine/savegame.cfsml	2009-02-16 09:17:49 UTC (rev 38356)
+++ scummvm/trunk/engines/sci/engine/savegame.cfsml	2009-02-16 09:21:36 UTC (rev 38357)
@@ -451,7 +451,7 @@
 	int i;
 
 	for (i = 0; i <= MEM_OBJ_MAX; i++) {
-		if (!strcasecmp(mem_obj_string_names[i].name, str))
+		if (!scumm_stricmp(mem_obj_string_names[i].name, str))
 			return i;
 	}
 


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