Replace strcasecmp() by Q_strcasecmp() for better MSVC compaibility.

This was suggest by @ajbonner in xatrix issue #11.
This commit is contained in:
Yamagi Burmeister 2018-03-23 15:55:43 +01:00
parent 5447354a76
commit ca0e44b2a4

View file

@ -1025,7 +1025,7 @@ Com_PageInMemory(byte *buffer, int size)
int
Q_stricmp(const char *s1, const char *s2)
{
return strcasecmp(s1, s2);
return Q_strcasecmp(s1, s2);
}
int