diff options
Diffstat (limited to 'gui/eval.h')
-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 { |