mirror of
https://github.com/izzy2lost/dolphin.git
synced 2026-06-19 01:16:48 -07:00
RiivolutionPatcher: Use case-insensitive filename comparison when searching for files in a folder patch.
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user