From 4cc5f3cd2a6f3404ee86151f6304ea86685d0789 Mon Sep 17 00:00:00 2001 From: Marcus Comstedt Date: Sun, 21 Dec 2003 18:58:25 +0000 Subject: Avoid duplicate entries due to case. svn-id: r11836 --- backends/dc/selector.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'backends/dc/selector.cpp') 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++; -- cgit v1.2.3