mirror of
https://git.code.sf.net/p/quake/newtree
synced 2025-02-01 20:30:57 +00:00
In CL_Record_f(): Fix the QW bug with wrong player entertime being recorded to demos.
This commit is contained in:
parent
4c7c5880fe
commit
f3f427bf4b
1 changed files with 1 additions and 1 deletions
|
@ -619,7 +619,7 @@ CL_Record_f (void)
|
|||
|
||||
MSG_WriteByte (&buf, svc_updateentertime);
|
||||
MSG_WriteByte (&buf, i);
|
||||
MSG_WriteFloat (&buf, player->entertime);
|
||||
MSG_WriteFloat (&buf, realtime - player->entertime);
|
||||
|
||||
MSG_WriteByte (&buf, svc_updateuserinfo);
|
||||
MSG_WriteByte (&buf, i);
|
||||
|
|
Loading…
Reference in a new issue