mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-01-30 20:50:42 +00:00
use the correct STORE_ op for function arges, rather than STORE_V. Should
speed up progs in general.
This commit is contained in:
parent
275e74161b
commit
4aa47d728a
1 changed files with 1 additions and 1 deletions
|
@ -181,7 +181,7 @@ PR_ParseFunctionCall (def_t *func)
|
|||
|
||||
// a vector copy will copy everything
|
||||
def_parms[arg].type = t->parm_types[arg];
|
||||
op = PR_Opcode_Find ("=", 5, &def_vector, &def_vector, &def_vector);
|
||||
op = PR_Opcode_Find ("=", 5, e, e, e);
|
||||
PR_Statement (op, e, &def_parms[arg]);
|
||||
arg++;
|
||||
} while (PR_Check (tt_punct, ","));
|
||||
|
|
Loading…
Reference in a new issue