aboutsummaryrefslogtreecommitdiff
path: root/backends
diff options
context:
space:
mode:
authorMarcus Comstedt2003-12-21 18:58:25 +0000
committerMarcus Comstedt2003-12-21 18:58:25 +0000
commit4cc5f3cd2a6f3404ee86151f6304ea86685d0789 (patch)
treeecdd080d9e4bfdee2256d49862314e70801dae5a /backends
parentdfa5e09aece8eefd582c51822214b3a207316bfa (diff)
downloadscummvm-rg350-4cc5f3cd2a6f3404ee86151f6304ea86685d0789.tar.gz
scummvm-rg350-4cc5f3cd2a6f3404ee86151f6304ea86685d0789.tar.bz2
scummvm-rg350-4cc5f3cd2a6f3404ee86151f6304ea86685d0789.zip
Avoid duplicate entries due to case.
svn-id: r11836
Diffstat (limited to 'backends')
-rw-r--r--backends/dc/selector.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/backends/dc/selector.cpp b/backends/dc/selector.cpp
index c6bd3817b4..092d99a214 100644
--- a/backends/dc/selector.cpp
+++ b/backends/dc/selector.cpp
@@ -258,7 +258,7 @@ static bool uniqueGame(const char *base, const char *dir, Game *games, int cnt)
{
while(cnt--)
if(!strcmp(dir, games->dir) &&
- !strcmp(base, games->filename_base))
+ !stricmp(base, games->filename_base))
return false;
else
games++;