engine: client: get rid of absolutely useless bitfields

This commit is contained in:
Alibek Omarov 2025-01-25 18:40:03 +03:00
parent c0f1d8c647
commit 684e229ac8

View file

@ -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 )