mirror of
https://github.com/Shpoike/Quakespasm.git
synced 2025-02-09 09:10:54 +00:00
zone.c: fix padding in memblock_t struct to works as intended. the previous layout was probably harmless but wasted a few bytes.
git-svn-id: svn://svn.code.sf.net/p/quakespasm/code/trunk/quakespasm@1275 af15c1b1-3010-417e-b628-4374ebc0bcbd
This commit is contained in:
parent
ba5ce1e5af
commit
0da03db7b8
1 changed files with 1 additions and 1 deletions
|
@ -37,8 +37,8 @@ typedef struct memblock_s
|
||||||
int size; // including the header and possibly tiny fragments
|
int size; // including the header and possibly tiny fragments
|
||||||
int tag; // a tag of 0 is a free block
|
int tag; // a tag of 0 is a free block
|
||||||
int id; // should be ZONEID
|
int id; // should be ZONEID
|
||||||
struct memblock_s *next, *prev;
|
|
||||||
int pad; // pad to 64 bit boundary
|
int pad; // pad to 64 bit boundary
|
||||||
|
struct memblock_s *next, *prev;
|
||||||
} memblock_t;
|
} memblock_t;
|
||||||
|
|
||||||
typedef struct
|
typedef struct
|
||||||
|
|
Loading…
Reference in a new issue