mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-23 04:42:32 +00:00
copy the correct number of bytes
This commit is contained in:
parent
1c2d25cd91
commit
4810046f39
1 changed files with 1 additions and 1 deletions
|
@ -301,7 +301,7 @@ pr_obj_msg_sendv (progs_t *pr)
|
|||
if (args.count > 6)
|
||||
args.count = 6;
|
||||
memcpy (G_POINTER (pr, OFS_PARM2), G_POINTER (pr, args.list),
|
||||
args.count * 4);
|
||||
args.count * 4 * 3);
|
||||
call_function (pr, imp);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue