Tiny fix, sizeof(*move) -> sizeof(usercmd_t)

This commit is contained in:
Dabb 2001-04-06 13:02:35 +00:00
parent 74a61f22f7
commit 0e3d9f385a
1 changed files with 1 additions and 1 deletions

View File

@ -372,7 +372,7 @@ MSG_ReadDeltaUsercmd (usercmd_t *from, usercmd_t *move)
{
int bits;
memcpy (move, from, sizeof (*move));
memcpy (move, from, sizeof (usercmd_t));
bits = MSG_ReadByte ();