mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-02-17 01:11:45 +00:00
Fix a size error in OP_LOAD_Q.
C&P from OP_LOAD_V :/
This commit is contained in:
parent
364c2d2c2b
commit
6252faa069
1 changed files with 1 additions and 1 deletions
|
@ -733,7 +733,7 @@ PR_ExecuteProgram (progs_t *pr, func_t fnum)
|
|||
"field in an edict");
|
||||
}
|
||||
ed = PROG_TO_EDICT (pr, OPA.entity_var);
|
||||
memcpy (&OPC, &ed->v[OPB.integer_var], 3 * sizeof (OPC));
|
||||
memcpy (&OPC, &ed->v[OPB.integer_var], 4 * sizeof (OPC));
|
||||
break;
|
||||
|
||||
case OP_LOADB_F:
|
||||
|
|
Loading…
Reference in a new issue