diff options
Diffstat (limited to 'src/cgame')
-rw-r--r-- | src/cgame/cg_local.h | 2 | ||||
-rw-r--r-- | src/cgame/cg_syscalls.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/cgame/cg_local.h b/src/cgame/cg_local.h index de9c7c6f..276bfd41 100644 --- a/src/cgame/cg_local.h +++ b/src/cgame/cg_local.h @@ -1475,7 +1475,7 @@ int trap_FS_FOpenFile( const char *qpath, fileHandle_t *f, fsMode_t mo void trap_FS_Read( void *buffer, int len, fileHandle_t f ); void trap_FS_Write( const void *buffer, int len, fileHandle_t f ); void trap_FS_FCloseFile( fileHandle_t f ); -int trap_FS_Seek( fileHandle_t f, long offset, int origin ); // fsOrigin_t +void trap_FS_Seek( fileHandle_t f, long offset, fsOrigin_t origin ); // fsOrigin_t // add commands to the local console as if they were typed in // for map changing, etc. The command is not executed immediately, diff --git a/src/cgame/cg_syscalls.c b/src/cgame/cg_syscalls.c index 835ea14d..b89751e2 100644 --- a/src/cgame/cg_syscalls.c +++ b/src/cgame/cg_syscalls.c @@ -104,7 +104,7 @@ void trap_FS_FCloseFile( fileHandle_t f ) syscall( CG_FS_FCLOSEFILE, f ); } -void trap_FS_Seek( fileHandle_t f, int offset, fsOrigin_t origin ) +void trap_FS_Seek( fileHandle_t f, long offset, fsOrigin_t origin ) { syscall( CG_FS_SEEK, f, offset, origin ); } |