mirror of
https://git.code.sf.net/p/quake/newtree
synced 2025-01-22 16:01:25 +00:00
white space
This commit is contained in:
parent
3eb47e6d3e
commit
9606b889cb
1 changed files with 4 additions and 4 deletions
|
@ -597,12 +597,12 @@ SV_WriteEntitiesToClient (client_t *client, sizebuf_t *msg)
|
||||||
state->colormod = 255;
|
state->colormod = 255;
|
||||||
|
|
||||||
if ((val = GETEDICTFIELDVALUE (ent, eval_alpha))
|
if ((val = GETEDICTFIELDVALUE (ent, eval_alpha))
|
||||||
&& val->_float != 0) state->alpha =
|
&& val->_float != 0)
|
||||||
bound (0, val->_float, 1) * 255.0;
|
state->alpha = bound (0, val->_float, 1) * 255.0;
|
||||||
|
|
||||||
if ((val = GETEDICTFIELDVALUE (ent, eval_scale))
|
if ((val = GETEDICTFIELDVALUE (ent, eval_scale))
|
||||||
&& val->_float != 0) state->scale =
|
&& val->_float != 0)
|
||||||
bound (0, val->_float, 15.9375) * 16.0;
|
state->scale = bound (0, val->_float, 15.9375) * 16.0;
|
||||||
|
|
||||||
if ((val = GETEDICTFIELDVALUE (ent, eval_glowsize))
|
if ((val = GETEDICTFIELDVALUE (ent, eval_glowsize))
|
||||||
&& val->_float != 0)
|
&& val->_float != 0)
|
||||||
|
|
Loading…
Reference in a new issue