aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/scicore/vocab_debug.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/sci/scicore/vocab_debug.cpp')
-rw-r--r--engines/sci/scicore/vocab_debug.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sci/scicore/vocab_debug.cpp b/engines/sci/scicore/vocab_debug.cpp
index 8e3b1afc8d..2051bf1f33 100644
--- a/engines/sci/scicore/vocab_debug.cpp
+++ b/engines/sci/scicore/vocab_debug.cpp
@@ -199,7 +199,7 @@ int
vocabulary_lookup_sname(char **snames_list, char *sname) {
int pos = 0;
while (snames_list[pos]) {
- if (!strcasecmp(sname, snames_list[pos])) return pos;
+ if (!scumm_stricmp(sname, snames_list[pos])) return pos;
pos++;
}