summaryrefslogtreecommitdiff
path: root/source/r_bsp.c
diff options
context:
space:
mode:
authorAndrey Nazarov <skuller@skuller.net>2008-04-02 23:03:09 +0000
committerAndrey Nazarov <skuller@skuller.net>2008-04-02 23:03:09 +0000
commit7ec50f12252b4dfb97f3249ccf05a771b98785c1 (patch)
tree279e4e8bd7b940368331a43869c165de9637ae99 /source/r_bsp.c
parent80e48417564f1ce50a39a7c552ad95e651362c1f (diff)
Use size_t instead of int where possible.
Added initial support for Win64 port.
Diffstat (limited to 'source/r_bsp.c')
-rw-r--r--source/r_bsp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/r_bsp.c b/source/r_bsp.c
index 35a6521..82d2372 100644
--- a/source/r_bsp.c
+++ b/source/r_bsp.c
@@ -587,7 +587,7 @@ void Bsp_LoadWorld( const char *path ) {
lump_t *lump;
int i;
byte *data;
- unsigned length, endpos;
+ size_t length, endpos;
length = fs.LoadFileEx( path, ( void ** )&data, FS_FLAG_CACHE );
if( !data ) {