1
0
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:
IntelOrca
2016-01-10 21:39:49 +00:00
parent e79edcb1d6
commit 6774412bce

View File

@@ -17,7 +17,7 @@ namespace String
if (ignoreCase)
{
return _strcmpi(a, b) == 0;
return _stricmp(a, b) == 0;
}
else
{