[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:
Bill Currie 2023-09-25 13:48:50 +09:00
parent 79dbc9b866
commit 1e7b1ec86f

View file

@ -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;