mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-27 14:42:07 +00:00
U_EXTEND fixes taniwha wanted me to commit for him.
This commit is contained in:
parent
a7dfe849fd
commit
f192287a3b
1 changed files with 2 additions and 2 deletions
|
@ -201,7 +201,7 @@ CL_ParseDelta (entity_state_t *from, entity_state_t *to, int bits)
|
||||||
// FIXME
|
// FIXME
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!bits & U_EXTEND1)
|
if (!(bits & U_EXTEND1))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
// LordHavoc: Endy neglected to mark this as being part of the QSG
|
// LordHavoc: Endy neglected to mark this as being part of the QSG
|
||||||
|
@ -220,7 +220,7 @@ CL_ParseDelta (entity_state_t *from, entity_state_t *to, int bits)
|
||||||
if (bits & U_COLORMOD)
|
if (bits & U_COLORMOD)
|
||||||
to->colormod = MSG_ReadByte (net_message);
|
to->colormod = MSG_ReadByte (net_message);
|
||||||
|
|
||||||
if (!bits & U_EXTEND2)
|
if (!(bits & U_EXTEND2))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
if (bits & U_FRAME2)
|
if (bits & U_FRAME2)
|
||||||
|
|
Loading…
Reference in a new issue