From b440dbd9981bcb3a1c8315db3a0e38e9bd4c62bd Mon Sep 17 00:00:00 2001 From: JosJuice Date: Sat, 24 Jun 2017 14:06:31 +0200 Subject: FileSystemGCWii: Use case insensitive comparison in FindFileInfo This was a regression in f49b64c. Some games seem to name the banner file OPENING.BNR instead of opening.bnr. Should fix https://bugs.dolphin-emu.org/issues/10354 --- Source/Core/DiscIO/FileSystemGCWii.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Source/Core/DiscIO/FileSystemGCWii.cpp') diff --git a/Source/Core/DiscIO/FileSystemGCWii.cpp b/Source/Core/DiscIO/FileSystemGCWii.cpp index fd70776069..615a33888b 100644 --- a/Source/Core/DiscIO/FileSystemGCWii.cpp +++ b/Source/Core/DiscIO/FileSystemGCWii.cpp @@ -285,7 +285,7 @@ std::unique_ptr FileSystemGCWii::FindFileInfo(const std::string& path, for (const FileInfo& child : file_info) { - if (child.GetName() == searching_for) + if (!strcasecmp(child.GetName().c_str(), searching_for.c_str())) { // A match is found. The rest of the path is passed on to finish the search. std::unique_ptr result = FindFileInfo(rest_of_path, child); -- cgit v1.2.3