mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-02-12 15:38:59 +01:00
RiivolutionPatcher: Use case-insensitive filename comparison when searching for files in a folder patch.
This commit is contained in:
parent
dbaebdc585
commit
0fc563ee2e
@ -378,7 +378,7 @@ static DiscIO::FSTBuilderNode* FindFilenameNodeInFST(std::string_view filename,
|
||||
if (result)
|
||||
return result;
|
||||
}
|
||||
else if (node.m_filename == filename)
|
||||
else if (CaseInsensitiveEquals(node.m_filename, filename))
|
||||
{
|
||||
return &node;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user