mirror of
https://github.com/yquake2/xatrix.git
synced 2024-11-10 06:42:22 +00:00
Replace strcasecmp() by Q_strcasecmp() for better MSVC compaibility.
This was suggest by @ajbonner in issue #11.
This commit is contained in:
parent
a9b24bfa04
commit
618953fbdd
1 changed files with 1 additions and 1 deletions
|
@ -1014,7 +1014,7 @@ Com_PageInMemory(byte *buffer, int size)
|
||||||
int
|
int
|
||||||
Q_stricmp(const char *s1, const char *s2)
|
Q_stricmp(const char *s1, const char *s2)
|
||||||
{
|
{
|
||||||
return strcasecmp(s1, s2);
|
return Q_strcasecmp(s1, s2);
|
||||||
}
|
}
|
||||||
|
|
||||||
int
|
int
|
||||||
|
|
Loading…
Reference in a new issue