mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2025-12-24 00:03:11 +01:00
use _stricmp instead of _strcmpi
This commit is contained in:
@@ -17,7 +17,7 @@ namespace String
|
||||
|
||||
if (ignoreCase)
|
||||
{
|
||||
return _strcmpi(a, b) == 0;
|
||||
return _stricmp(a, b) == 0;
|
||||
}
|
||||
else
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user