mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2025-02-21 10:51:10 +00:00
Still have to parse ahead though
This commit is contained in:
parent
b78dab9d71
commit
0627e9e06e
1 changed files with 3 additions and 2 deletions
5
ftepp.c
5
ftepp.c
|
@ -1266,8 +1266,9 @@ static bool ftepp_preprocess(ftepp_t *ftepp)
|
|||
case TOKEN_IDENT:
|
||||
case TOKEN_TYPENAME:
|
||||
if (!ftepp->output_on)
|
||||
break;
|
||||
macro = ftepp_macro_find(ftepp, ftepp_tokval(ftepp));
|
||||
macro = ftepp_macro_find(ftepp, ftepp_tokval(ftepp));
|
||||
else
|
||||
macro = NULL;
|
||||
if (!macro) {
|
||||
ftepp_out(ftepp, ftepp_tokval(ftepp), false);
|
||||
ftepp_next(ftepp);
|
||||
|
|
Loading…
Reference in a new issue