mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-02-24 20:51:35 +00:00
[qfcc] Fix vector component symbols
The removal of the e tag from expr_t necessitated making convert_name return a new expressions which resulted in get_type no longer being enough to both convert a name expression and get the type. This was just another missed spot. With this, all of game-source except ctf builds.
This commit is contained in:
parent
79dbc9b866
commit
1e7b1ec86f
1 changed files with 1 additions and 0 deletions
|
@ -1637,6 +1637,7 @@ field_expr (expr_t *e1, expr_t *e2)
|
|||
e->expr.type = field->type;
|
||||
return e;
|
||||
} else {
|
||||
e2 = convert_name (e2);
|
||||
t2 = get_type (e2);
|
||||
if (e2->type == ex_error)
|
||||
return e2;
|
||||
|
|
Loading…
Reference in a new issue