mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-01-22 06:23:04 +01:00
Replace Equals with IEquals where appropriate
This commit is contained in:
@@ -721,7 +721,7 @@ size_t ThemeGetIndexForName(const utf8* name)
|
||||
for (size_t i = 0; i < count; i++)
|
||||
{
|
||||
const utf8* tn = ThemeManagerGetAvailableThemeName(i);
|
||||
if (String::Equals(tn, name, true))
|
||||
if (String::IEquals(tn, name))
|
||||
{
|
||||
return i;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user