aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/sfx/timer/timers.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/sci/sfx/timer/timers.cpp')
-rw-r--r--engines/sci/sfx/timer/timers.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sci/sfx/timer/timers.cpp b/engines/sci/sfx/timer/timers.cpp
index bdcd9dad34..3caf21f6b1 100644
--- a/engines/sci/sfx/timer/timers.cpp
+++ b/engines/sci/sfx/timer/timers.cpp
@@ -64,7 +64,7 @@ sfx_find_timer(char *name) {
} else {
int n = 0;
while (sfx_timers[n]
- && strcasecmp(sfx_timers[n]->name, name))
+ && scumm_stricmp(sfx_timers[n]->name, name))
++n;
return sfx_timers[n];