engine: client: get rid of absolutely useless bitfields
This commit is contained in:
parent
c0f1d8c647
commit
684e229ac8
1 changed files with 5 additions and 5 deletions
|
@ -91,11 +91,11 @@ static void CL_ParseNewMovevars( sizebuf_t *msg )
|
||||||
|
|
||||||
typedef struct delta_header_t
|
typedef struct delta_header_t
|
||||||
{
|
{
|
||||||
qboolean remove : 1;
|
qboolean remove;
|
||||||
qboolean custom : 1;
|
qboolean custom;
|
||||||
qboolean instanced : 1;
|
qboolean instanced;
|
||||||
uint instanced_baseline_index : 6;
|
uint16_t instanced_baseline_index;
|
||||||
uint offset : 6;
|
uint16_t offset;
|
||||||
} delta_header_t;
|
} delta_header_t;
|
||||||
|
|
||||||
static int CL_ParseDeltaHeader( sizebuf_t *msg, qboolean delta, int oldnum, struct delta_header_t *hdr )
|
static int CL_ParseDeltaHeader( sizebuf_t *msg, qboolean delta, int oldnum, struct delta_header_t *hdr )
|
||||||
|
|
Loading…
Add table
Reference in a new issue