mirror of
https://github.com/nzp-team/dquakeplus.git
synced 2025-02-16 16:41:03 +00:00
svc_parsebaseline HACK
This commit is contained in:
parent
5966fd86de
commit
a7461c4dcf
2 changed files with 2 additions and 2 deletions
|
@ -675,7 +675,7 @@ void CL_ParseBaseline (entity_t *ent)
|
|||
ent->baseline.frame = MSG_ReadByte ();
|
||||
ent->baseline.colormap = MSG_ReadByte();
|
||||
ent->baseline.skin = MSG_ReadByte();
|
||||
ent->baseline.scale = MSG_ReadFloat();
|
||||
ent->baseline.scale = (float)MSG_ReadByte();
|
||||
for (i=0 ; i<3 ; i++)
|
||||
{
|
||||
ent->baseline.origin[i] = MSG_ReadCoord ();
|
||||
|
|
|
@ -1067,7 +1067,7 @@ void SV_CreateBaseline (void)
|
|||
MSG_WriteByte (&sv.signon, svent->baseline.frame);
|
||||
MSG_WriteByte (&sv.signon, svent->baseline.colormap);
|
||||
MSG_WriteByte (&sv.signon, svent->baseline.skin);
|
||||
MSG_WriteFloat (&sv.signon, svent->baseline.scale);
|
||||
MSG_WriteByte (&sv.signon, (int)svent->baseline.scale);
|
||||
for (i=0 ; i<3 ; i++)
|
||||
{
|
||||
MSG_WriteCoord(&sv.signon, svent->baseline.origin[i]);
|
||||
|
|
Loading…
Reference in a new issue