mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-01-18 15:01:41 +00:00
correct the scale init and enable the qsg inits in cl_tent
This commit is contained in:
parent
5fb17e384b
commit
7f0d8ed7e0
2 changed files with 1 additions and 3 deletions
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue