mirror of
https://github.com/yquake2/ctf.git
synced 2025-04-20 09:20:58 +00:00
Call strcasecmp() and not Quake IIs home made version.
The home made version is crap and not const correct.
This commit is contained in:
parent
b67a392cb6
commit
2d6dd4117d
1 changed files with 1 additions and 1 deletions
|
@ -1025,7 +1025,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
|
||||
|
|
Loading…
Reference in a new issue