mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-01-22 22:34:33 +01:00
Replace Equals with IEquals where appropriate
This commit is contained in:
@@ -118,7 +118,7 @@ void ServerList::Sort()
|
||||
[](const ServerListEntry& a, const ServerListEntry& b) {
|
||||
if (a.Favourite == b.Favourite)
|
||||
{
|
||||
return String::Equals(a.Address, b.Address, true);
|
||||
return String::IEquals(a.Address, b.Address);
|
||||
}
|
||||
return false;
|
||||
}),
|
||||
|
||||
Reference in New Issue
Block a user