aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEugene Sandulenko2006-03-18 12:42:24 +0000
committerEugene Sandulenko2006-03-18 12:42:24 +0000
commit30c707056443c0a588b5b053d65340225dc95e44 (patch)
treeba97c82f9e1723ae0f4b3bbab42b54e911460e34
parent0f21db8c8e07cb04bb9ebeab45034258b0c60e2d (diff)
downloadscummvm-rg350-30c707056443c0a588b5b053d65340225dc95e44.tar.gz
scummvm-rg350-30c707056443c0a588b5b053d65340225dc95e44.tar.bz2
scummvm-rg350-30c707056443c0a588b5b053d65340225dc95e44.zip
Oops. Theme variables are meant to be case insensitive. Fix comparison
function. svn-id: r21361
-rw-r--r--gui/eval.h2
1 files changed, 1 insertions, 1 deletions
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 {