mirror of
https://git.code.sf.net/p/quake/newtree
synced 2025-02-18 01:21:39 +00:00
Tiny fix, sizeof(*move) -> sizeof(usercmd_t)
This commit is contained in:
parent
74a61f22f7
commit
0e3d9f385a
1 changed files with 1 additions and 1 deletions
|
@ -372,7 +372,7 @@ MSG_ReadDeltaUsercmd (usercmd_t *from, usercmd_t *move)
|
||||||
{
|
{
|
||||||
int bits;
|
int bits;
|
||||||
|
|
||||||
memcpy (move, from, sizeof (*move));
|
memcpy (move, from, sizeof (usercmd_t));
|
||||||
|
|
||||||
bits = MSG_ReadByte ();
|
bits = MSG_ReadByte ();
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue