Minor bugfix.

This commit is contained in:
Ragnvald Maartmann-Moe IV 2002-01-04 04:05:46 +00:00
parent b13efc3a83
commit 43ca999fd7
2 changed files with 3 additions and 3 deletions

View file

@ -69,9 +69,9 @@ typedef struct particle_s
// driver-usable fields
vec3_t org;
int color;
float alpha;
int tex;
float scale;
float alpha;
// drivers never touch the following fields
vec3_t vel;
ptype_t type;

View file

@ -54,8 +54,8 @@
// driver-usable fields
#define pt_org 0
#define pt_color 12
#define pt_tex 16
#define pt_alpha 20
#define pt_alpha 16
#define pt_tex 20
#define pt_scale 24
// drivers never touch the following fields
#define pt_vel 28