]> de.git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - zone.h
migrated cls.message and client->message buffers into netconn_t struct
[xonotic/darkplaces.git] / zone.h
diff --git a/zone.h b/zone.h
index af6ddfd586ed67476ad6af1eb8b1f29937af4ee4..12809647893a9d114eed9774404b60449ab40b62 100644 (file)
--- a/zone.h
+++ b/zone.h
@@ -66,7 +66,7 @@ memheader_t;
 typedef struct memclump_s
 {
        // contents of the clump
-       qbyte block[MEMCLUMPSIZE];
+       unsigned char block[MEMCLUMPSIZE];
        // should always be MEMCLUMP_SENTINEL
        unsigned int sentinel1;
        // if a bit is on, it means that the MEMUNIT bytes it represents are
@@ -136,7 +136,7 @@ void _Mem_CheckSentinelsGlobal(const char *filename, int fileline);
 qboolean Mem_IsAllocated(mempool_t *pool, void *data);
 
 // used for temporary allocations
-mempool_t *tempmempool;
+extern mempool_t *tempmempool;
 
 void Memory_Init (void);
 void Memory_Shutdown (void);