diff options
author | Marcus Comstedt | 2003-12-21 18:58:25 +0000 |
---|---|---|
committer | Marcus Comstedt | 2003-12-21 18:58:25 +0000 |
commit | 4cc5f3cd2a6f3404ee86151f6304ea86685d0789 (patch) | |
tree | ecdd080d9e4bfdee2256d49862314e70801dae5a /backends | |
parent | dfa5e09aece8eefd582c51822214b3a207316bfa (diff) | |
download | scummvm-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.cpp | 2 |
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++; |