mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-01-22 14:24:33 +01:00
Replace Equals with IEquals where appropriate
This commit is contained in:
@@ -157,7 +157,7 @@ public:
|
||||
entryIsNotSeparate = true;
|
||||
}
|
||||
|
||||
if (entryIsNotSeparate || String::Equals(item.ObjectEntry, entry, true))
|
||||
if (entryIsNotSeparate || String::IEquals(item.ObjectEntry, entry))
|
||||
{
|
||||
count++;
|
||||
}
|
||||
@@ -191,7 +191,7 @@ public:
|
||||
entryIsNotSeparate = true;
|
||||
}
|
||||
|
||||
if (entryIsNotSeparate || String::Equals(item.ObjectEntry, entry, true))
|
||||
if (entryIsNotSeparate || String::IEquals(item.ObjectEntry, entry))
|
||||
{
|
||||
TrackDesignFileRef ref;
|
||||
ref.name = GetNameFromTrackPath(item.Path);
|
||||
|
||||
Reference in New Issue
Block a user