aboutsummaryrefslogtreecommitdiff
path: root/gui/eval.h
diff options
context:
space:
mode:
Diffstat (limited to 'gui/eval.h')
-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 {