mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-05-31 00:30:57 +00:00
Compress entity_state_t a little.
Use byte and short instead of int.
This commit is contained in:
parent
39190c5e2c
commit
f0a145a537
1 changed files with 4 additions and 4 deletions
|
@ -307,11 +307,11 @@ typedef struct {
|
||||||
unsigned int flags; // nolerp, etc
|
unsigned int flags; // nolerp, etc
|
||||||
vec3_t origin;
|
vec3_t origin;
|
||||||
vec3_t angles;
|
vec3_t angles;
|
||||||
int modelindex;
|
unsigned short modelindex;
|
||||||
int frame;
|
unsigned short frame;
|
||||||
int colormap;
|
|
||||||
int skinnum;
|
|
||||||
int effects;
|
int effects;
|
||||||
|
byte colormap;
|
||||||
|
byte skinnum;
|
||||||
|
|
||||||
// QSG 2
|
// QSG 2
|
||||||
byte alpha;
|
byte alpha;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue