X-Git-Url: http://de.git.xonotic.org/?a=blobdiff_plain;f=zone.h;h=285facca38ea9a8f0920aa3b2e8e0bffb9dd3a22;hb=8a62b3d4c3dc9d02ed63f875e680c6fb9ef65bbf;hp=12809647893a9d114eed9774404b60449ab40b62;hpb=6824d8ddc8a43cae0609be5bbe8bee01fa1a4225;p=xonotic%2Fdarkplaces.git diff --git a/zone.h b/zone.h index 12809647..285facca 100644 --- a/zone.h +++ b/zone.h @@ -103,8 +103,6 @@ typedef struct mempool_s size_t realsize; // updated each time the pool is displayed by memlist, shows change from previous time (unless pool was freed) size_t lastchecksize; - // name of the pool - char name[POOLNAMESIZE]; // linked into global mempool list struct mempool_s *next; // parent object (used for nested memory pools) @@ -112,6 +110,8 @@ typedef struct mempool_s // file name and line where Mem_AllocPool was called const char *filename; int fileline; + // name of the pool + char name[POOLNAMESIZE]; // should always be MEMHEADER_SENTINEL1 unsigned int sentinel2; }