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:
@@ -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()
|
||||
|
||||
Reference in New Issue
Block a user