mirror of
https://github.com/Shpoike/Quakespasm.git
synced 2024-11-10 15:31:39 +00:00
sys_sdl.c: renamed filelength to Sys_filelength in order to avoid conflicts
when compiling for windows. git-svn-id: svn+ssh://svn.code.sf.net/p/quakespasm/code/trunk@85 af15c1b1-3010-417e-b628-4374ebc0bcbd
This commit is contained in:
parent
d1e09241f3
commit
7d6a47a0f2
1 changed files with 2 additions and 2 deletions
|
@ -42,7 +42,7 @@ int findhandle (void)
|
|||
return -1;
|
||||
}
|
||||
|
||||
int filelength (FILE *f)
|
||||
int Sys_filelength (FILE *f)
|
||||
{
|
||||
int pos;
|
||||
int end;
|
||||
|
@ -72,7 +72,7 @@ int Sys_FileOpenRead (char *path, int *hndl)
|
|||
{
|
||||
sys_handles[i] = f;
|
||||
*hndl = i;
|
||||
retval = filelength(f);
|
||||
retval = Sys_filelength(f);
|
||||
}
|
||||
|
||||
return retval;
|
||||
|
|
Loading…
Reference in a new issue