]> de.git.xonotic.org Git - xonotic/netradiant.git/blobdiff - tools/quake3/q3map2/bspfile_abstract.c
patches by jal: fix some warnings, and spawnflags 64 on misc_model to not smooth...
[xonotic/netradiant.git] / tools / quake3 / q3map2 / bspfile_abstract.c
index cf059ca00aedc27c2ec12286528f6105ff6702f0..0e77526fc5d845833be848311f2e38b150602770 100644 (file)
@@ -331,8 +331,6 @@ int CopyLump( bspHeader_t *header, int lump, void *dest, int size )
 
 int CopyLump_Allocate( bspHeader_t *header, int lump, void **dest, int size, int *allocationVariable )
 {
-       int             length, offset;
-       
        /* get lump length and offset */
        *allocationVariable = header->lumps[ lump ].length / size;
        *dest = realloc(*dest, size * *allocationVariable);