mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-01-20 13:33:02 +01:00
Replace Equals with IEquals where appropriate
This commit is contained in:
@@ -49,9 +49,9 @@ const CommandLineCommand CommandLine::SpriteCommands[]
|
||||
|
||||
static exitcode_t HandleSprite(CommandLineArgEnumerator* argEnumerator)
|
||||
{
|
||||
if (String::Equals(_mode, SZ_CLOSEST, true))
|
||||
if (String::IEquals(_mode, SZ_CLOSEST))
|
||||
gSpriteMode = ImportMode::Closest;
|
||||
else if (String::Equals(_mode, SZ_DITHERING, true))
|
||||
else if (String::IEquals(_mode, SZ_DITHERING))
|
||||
gSpriteMode = ImportMode::Dithering;
|
||||
Memory::Free(_mode);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user