mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2025-01-18 14:21:36 +00:00
Wrong condition *sigh*
This commit is contained in:
parent
0627e9e06e
commit
41cb923c0c
1 changed files with 1 additions and 1 deletions
2
ftepp.c
2
ftepp.c
|
@ -1265,7 +1265,7 @@ static bool ftepp_preprocess(ftepp_t *ftepp)
|
|||
case TOKEN_KEYWORD:
|
||||
case TOKEN_IDENT:
|
||||
case TOKEN_TYPENAME:
|
||||
if (!ftepp->output_on)
|
||||
if (ftepp->output_on)
|
||||
macro = ftepp_macro_find(ftepp, ftepp_tokval(ftepp));
|
||||
else
|
||||
macro = NULL;
|
||||
|
|
Loading…
Reference in a new issue