mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-14 21:37:52 -07:00
Fix File Extension Search Being Case Sensitive
This commit is contained in:
parent
42d5b5b48c
commit
519d2549dd
@ -47,7 +47,7 @@ std::vector<std::string> DoFileSearch(const std::vector<std::string>& globs, con
|
||||
regex_str += std::regex_replace(std::regex_replace(str, std::regex("\\."), "\\."), std::regex("\\*"), ".*");
|
||||
}
|
||||
regex_str += ")$";
|
||||
std::regex regex(regex_str);
|
||||
std::regex regex(regex_str, std::regex_constants::icase);
|
||||
return FileSearchWithTest(directories, recursive, [&](const File::FSTEntry& entry) {
|
||||
return std::regex_match(entry.virtualName, regex);
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user