1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-24 23:34:37 +01:00

Replace Equals with IEquals where appropriate

This commit is contained in:
ζeh Matt
2023-07-05 22:34:29 +03:00
parent 279a056125
commit 3d5e6ea932
27 changed files with 80 additions and 81 deletions

View File

@@ -108,7 +108,7 @@ namespace Path
bool Equals(u8string_view a, u8string_view b)
{
return String::Equals(a, b, Platform::ShouldIgnoreCase());
return Platform::ShouldIgnoreCase() ? String::IEquals(a,b) : String::Equals(a, b);
}
u8string ResolveCasing(u8string_view path)