From 30c707056443c0a588b5b053d65340225dc95e44 Mon Sep 17 00:00:00 2001 From: Eugene Sandulenko Date: Sat, 18 Mar 2006 12:42:24 +0000 Subject: Oops. Theme variables are meant to be case insensitive. Fix comparison function. svn-id: r21361 --- gui/eval.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gui') diff --git a/gui/eval.h b/gui/eval.h index 0608f83603..69389c58c9 100644 --- a/gui/eval.h +++ b/gui/eval.h @@ -50,7 +50,7 @@ enum evalErrors { }; 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 { -- cgit v1.2.3