From 2d0a897d16d25f10035e97a79ceab4d6036e5c60 Mon Sep 17 00:00:00 2001 From: Travis Howell Date: Mon, 16 Feb 2009 09:17:49 +0000 Subject: Replace strcasecmp with scumm_stricmp. svn-id: r38356 --- engines/sci/sfx/timer/timers.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'engines/sci/sfx/timer') 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]; -- cgit v1.2.3