RiivolutionPatcher: Use case-insensitive filename comparison when searching for files in a folder patch.

This commit is contained in:
Admiral H. Curtiss 2021-11-20 01:15:18 +01:00
parent dbaebdc585
commit 0fc563ee2e
No known key found for this signature in database
GPG Key ID: F051B4C4044F33FB
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}