Call strcasecmp() and not Quake IIs home made version.

The home made version is crap and not const correct.
This commit is contained in:
Yamagi Burmeister 2018-10-25 19:09:01 +02:00
parent 315d0ad7ed
commit 50a6255b0a

View file

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