diff options
author | Tim Angus <tim@ngus.net> | 2009-10-03 11:42:03 +0000 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2013-01-03 00:15:14 +0000 |
commit | 3b9eac7bf2528674a5c5670b474029e73a7d2926 (patch) | |
tree | 3660a9d13e64533fce1731951cc32e5863f0479b /src | |
parent | 74ff891914c7f91b0f6c86a7a075a4fafdaf15e5 (diff) |
* SCIPT
Diffstat (limited to 'src')
-rw-r--r-- | src/qcommon/parse.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/qcommon/parse.c b/src/qcommon/parse.c index dbe30a1b..85e9ab81 100644 --- a/src/qcommon/parse.c +++ b/src/qcommon/parse.c @@ -900,10 +900,10 @@ static int Parse_ReadPrimitive(script_t *script, token_t *token) /* =============== -Parse_ReadSciptToken +Parse_ReadScriptToken =============== */ -static int Parse_ReadSciptToken(script_t *script, token_t *token) +static int Parse_ReadScriptToken(script_t *script, token_t *token) { //if there is a token available (from UnreadToken) if (script->tokenavailable) @@ -1259,7 +1259,7 @@ static int Parse_ReadSourceToken(source_t *source, token_t *token) while(!source->tokens) { //if there's a token to read from the script - if (Parse_ReadSciptToken(source->scriptstack, token)) return qtrue; + if (Parse_ReadScriptToken(source->scriptstack, token)) return qtrue; //if at the end of the script if (Parse_EndOfScript(source->scriptstack)) { |