diff options
author | Eugene Sandulenko | 2006-03-18 12:42:24 +0000 |
---|---|---|
committer | Eugene Sandulenko | 2006-03-18 12:42:24 +0000 |
commit | 30c707056443c0a588b5b053d65340225dc95e44 (patch) | |
tree | ba97c82f9e1723ae0f4b3bbab42b54e911460e34 /gui | |
parent | 0f21db8c8e07cb04bb9ebeab45034258b0c60e2d (diff) | |
download | scummvm-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
Diffstat (limited to 'gui')
-rw-r--r-- | gui/eval.h | 2 |
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 { |