correct the scale init and enable the qsg inits in cl_tent

This commit is contained in:
Bill Currie 2001-05-19 05:53:50 +00:00
parent 5fb17e384b
commit 7f0d8ed7e0
2 changed files with 1 additions and 3 deletions

View file

@ -492,7 +492,7 @@ CL_ParseBaseline (entity_t *ent)
// LordHavoc: set up the baseline to account for new effects (alpha,
// colormod, etc)
ent->alpha = 1;
ent->scale = 16;
ent->scale = 1;
ent->glow_color = 254;
ent->glow_size = 0;
ent->colormod[0] = ent->colormod[1] = ent->colormod[2] = 1;

View file

@ -108,13 +108,11 @@ CL_Init_Entity (entity_t *ent)
memset (ent, 0, sizeof (*ent));
ent->colormap = vid.colormap;
#if 0
ent->glow_size = 0;
ent->glow_color = 254;
ent->alpha = 1;
ent->scale = 1;
ent->colormod[0] = ent->colormod[1] = ent->colormod[2] = 1;
#endif
ent->pose1 = ent->pose2 = -1;
}