1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-28 01:04:50 +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

@@ -604,7 +604,7 @@ int32_t Guest::GetEasterEggNameId() const
for (uint32_t i = 0; i < std::size(gPeepEasterEggNames); i++)
{
if (String::IEquals(buffer, gPeepEasterEggNames[i]))
if (String::iequals(buffer, gPeepEasterEggNames[i]))
return static_cast<int32_t>(i);
}
@@ -751,7 +751,7 @@ int32_t Guest::CheckEasterEggName(int32_t index) const
FormatNameTo(ft);
FormatStringLegacy(buffer, sizeof(buffer), STR_STRINGID, ft.Data());
return String::IEquals(buffer, gPeepEasterEggNames[index]);
return String::iequals(buffer, gPeepEasterEggNames[index]);
}
void Guest::UpdateMotivesIdle()