diff options
author | Andrey Nazarov <skuller@skuller.net> | 2008-10-25 16:43:39 +0000 |
---|---|---|
committer | Andrey Nazarov <skuller@skuller.net> | 2008-10-25 16:43:39 +0000 |
commit | 8a4e5f5516e94fe901a332bce7eef9b824f225c6 (patch) | |
tree | 93d64ca93047c6b1c1b59658e950ab0062544fe9 /source/files.h | |
parent | b7d3939f3f68617f80d74d0a2bf6ea34ddea1065 (diff) |
Progress meter now works for local MVDs again.
Implemented `mvdskip' command which allows one jump to the next map in a MVD.
Removed `mvd_shownet' debugging stuff from dedicated server build.
Dropped packets no longer have maximum height on the lagometer.
Diffstat (limited to 'source/files.h')
-rw-r--r-- | source/files.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source/files.h b/source/files.h index 319e5e7..6fdf983 100644 --- a/source/files.h +++ b/source/files.h @@ -107,8 +107,8 @@ size_t FS_ReadLine( fileHandle_t f, char *buffer, int size ); void FS_Flush( fileHandle_t f ); -int FS_Tell( fileHandle_t f ); -int FS_RawTell( fileHandle_t f ); +size_t FS_Tell( fileHandle_t f ); +qboolean FS_Seek( fileHandle_t f, size_t offset ); size_t FS_GetFileLength( fileHandle_t f ); |