diff --git a/qbsp/parser.c b/qbsp/parser.c index bc692951..6778ddfd 100644 --- a/qbsp/parser.c +++ b/qbsp/parser.c @@ -24,8 +24,8 @@ int linenum; char token[MAXTOKEN]; -bool unget; +static bool unget; static char *script; diff --git a/qbsp/parser.h b/qbsp/parser.h index 2dcec739..54593def 100644 --- a/qbsp/parser.h +++ b/qbsp/parser.h @@ -28,7 +28,6 @@ extern int linenum; extern char token[MAXTOKEN]; -extern bool unget; bool ParseToken(bool crossline); void ParserInit(char *data);