aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/sfx/player/players.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/sci/sfx/player/players.cpp')
-rw-r--r--engines/sci/sfx/player/players.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sci/sfx/player/players.cpp b/engines/sci/sfx/player/players.cpp
index e4d56c45f3..c6ce106121 100644
--- a/engines/sci/sfx/player/players.cpp
+++ b/engines/sci/sfx/player/players.cpp
@@ -45,7 +45,7 @@ sfx_find_player(char *name) {
} else {
int n = 0;
while (sfx_players[n] &&
- strcasecmp(sfx_players[n]->name, name))
+ scumm_stricmp(sfx_players[n]->name, name))
++n;
return sfx_players[n];