mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 23:32:09 +00:00
get the type for the destination from the right place (hope that wasn't
a bugfix for something else:)
This commit is contained in:
parent
7cffeb27bf
commit
b01d4d4589
1 changed files with 1 additions and 1 deletions
|
@ -493,7 +493,7 @@ emit_sub_expr (expr_t *e, def_t *dest)
|
||||||
dest->users += 2;
|
dest->users += 2;
|
||||||
}
|
}
|
||||||
op = opcode_find (operator, def_a->type, def_b->type,
|
op = opcode_find (operator, def_a->type, def_b->type,
|
||||||
e->e.expr.type);
|
dest->type);
|
||||||
d = emit_statement (e, op, def_a, def_b, dest);
|
d = emit_statement (e, op, def_a, def_b, dest);
|
||||||
break;
|
break;
|
||||||
case ex_uexpr:
|
case ex_uexpr:
|
||||||
|
|
Loading…
Reference in a new issue