aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/sfx/timer
diff options
context:
space:
mode:
authorTravis Howell2009-02-16 09:17:49 +0000
committerTravis Howell2009-02-16 09:17:49 +0000
commit2d0a897d16d25f10035e97a79ceab4d6036e5c60 (patch)
tree03ab24646b7a1c0fa38494305216dc71e3a81c21 /engines/sci/sfx/timer
parent7a3c7c1e9a85cb83c3149503adb1e8247986bc7d (diff)
downloadscummvm-rg350-2d0a897d16d25f10035e97a79ceab4d6036e5c60.tar.gz
scummvm-rg350-2d0a897d16d25f10035e97a79ceab4d6036e5c60.tar.bz2
scummvm-rg350-2d0a897d16d25f10035e97a79ceab4d6036e5c60.zip
Replace strcasecmp with scumm_stricmp.
svn-id: r38356
Diffstat (limited to 'engines/sci/sfx/timer')
-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];