1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-02-03 18:07:53 +01:00

Rename String methods to use lowerCamelCase

This commit is contained in:
Aaron van Geffen
2024-12-11 22:28:31 +01:00
parent a24dc2e60a
commit 35e117aca2
102 changed files with 587 additions and 589 deletions

View File

@@ -33,6 +33,6 @@ namespace OpenRCT2::TrackImporter
bool ExtensionIsRCT1(const std::string& extension)
{
return String::IEquals(extension, ".td4");
return String::iequals(extension, ".td4");
}
} // namespace OpenRCT2::TrackImporter