use _stricmp instead of _strcmpi

This commit is contained in:
IntelOrca 2016-01-10 21:39:49 +00:00
parent e79edcb1d6
commit 6774412bce
1 changed files with 1 additions and 1 deletions

View File

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