mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2025-01-19 06:40:49 +00:00
*sigh*
This commit is contained in:
parent
a6547a15f3
commit
93341dd009
1 changed files with 1 additions and 1 deletions
2
parser.c
2
parser.c
|
@ -904,7 +904,7 @@ static bool parser_sy_apply_operator(parser_t *parser, shunt *sy)
|
|||
}
|
||||
out = (ast_expression*)ast_unary_new(ctx, type_not_instr[exprs[i]->expression.vtype], exprs[i]);
|
||||
if (!out) break;
|
||||
out = (ast_expression*)ast_unary_new(ctx, NOT_F, out);
|
||||
out = (ast_expression*)ast_unary_new(ctx, INSTR_NOT_F, out);
|
||||
if (!out) break;
|
||||
exprs[i] = out; out = NULL;
|
||||
if (OPTS_FLAG(PERL_LOGIC)) {
|
||||
|
|
Loading…
Reference in a new issue