[Scummvm-cvs-logs] SF.net SVN: scummvm: [21361] scummvm/trunk/gui/eval.h

sev at users.sourceforge.net sev at users.sourceforge.net
Sat Mar 18 04:43:01 CET 2006


Revision: 21361
Author:   sev
Date:     2006-03-18 04:42:24 -0800 (Sat, 18 Mar 2006)
ViewCVS:  http://svn.sourceforge.net/scummvm/?rev=21361&view=rev

Log Message:
-----------
Oops. Theme variables are meant to be case insensitive. Fix comparison
function.

Modified Paths:
--------------
    scummvm/trunk/gui/eval.h
Modified: scummvm/trunk/gui/eval.h
===================================================================
--- scummvm/trunk/gui/eval.h	2006-03-18 12:31:07 UTC (rev 21360)
+++ scummvm/trunk/gui/eval.h	2006-03-18 12:42:24 UTC (rev 21361)
@@ -50,7 +50,7 @@
 };
 
 struct IgnoreCaseComparator {
-  int operator()(const String& x, const String& y) const { return scumm_stricmp(x.c_str(), y.c_str()); }
+  int operator()(const String& x, const String& y) const { return strcmp(x.c_str(), y.c_str()); }
 };
 
 class Eval {


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