Fixed an endline issue.
This commit is contained in:
parent
748cbac1c0
commit
e788d15811
|
@ -184,9 +184,9 @@ PHYSFS_uint64 __PHYSFS_platformGetThreadID(void)
|
|||
/* ...make this Cygwin AND Visual C friendly... */
|
||||
int __PHYSFS_platformStricmp(const char *x, const char *y)
|
||||
{
|
||||
#if (defined _MSC_VER)
|
||||
return(stricmp(x, y));
|
||||
#else
|
||||
#if (defined _MSC_VER)
|
||||
return(stricmp(x, y));
|
||||
#else
|
||||
int ux, uy;
|
||||
|
||||
do
|
||||
|
@ -202,7 +202,7 @@ int __PHYSFS_platformStricmp(const char *x, const char *y)
|
|||
} while ((ux) && (uy));
|
||||
|
||||
return(0);
|
||||
#endif
|
||||
#endif
|
||||
} /* __PHYSFS_platformStricmp */
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue