mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-01-23 23:04:36 +01:00
Replace Equals with IEquals where appropriate
This commit is contained in:
@@ -223,7 +223,7 @@ namespace Platform
|
||||
// Find a file which matches by name (case insensitive)
|
||||
for (int32_t i = 0; i < count; i++)
|
||||
{
|
||||
if (String::Equals(files[i]->d_name, fileName.c_str(), true))
|
||||
if (String::IEquals(files[i]->d_name, fileName.c_str()))
|
||||
{
|
||||
result = Path::Combine(directory, std::string(files[i]->d_name));
|
||||
break;
|
||||
|
||||
Reference in New Issue
Block a user