projects
/
xonotic
/
darkplaces.git
/ commitdiff
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8df4533
)
made packfile_t (describes a file in a pack) use fs_offset_t
author
havoc <havoc@d7cf8633-e32d-0410-b094-e92efae38249>
Tue, 5 Jul 2005 13:08:49 +0000
(13:08 +0000)
committer
havoc <havoc@d7cf8633-e32d-0410-b094-e92efae38249>
Tue, 5 Jul 2005 13:08:49 +0000
(13:08 +0000)
git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@5507
d7cf8633
-e32d-0410-b094-
e92efae38249
fs.c
patch
|
blob
|
history
diff --git
a/fs.c
b/fs.c
index 98b12b58252437404ca694c34163324b56d6f8fb..9fd764153457d1f5a049ec1a69626c8100e6dd3f 100644
(file)
--- a/
fs.c
+++ b/
fs.c
@@
-206,9
+206,9
@@
typedef struct
{
char name [MAX_QPATH];
packfile_flags_t flags;
-
size
_t offset;
-
size_t packsize;
// size in the package
-
size_t realsize;
// real file size (uncompressed)
+
fs_offset
_t offset;
+
fs_offset_t packsize;
// size in the package
+
fs_offset_t realsize;
// real file size (uncompressed)
} packfile_t;
typedef struct pack_s