mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-23 21:02:50 +00:00
Fixed a bug introduced by my optimizations.
This commit is contained in:
parent
f78f921285
commit
347962cc33
1 changed files with 4 additions and 2 deletions
|
@ -1343,8 +1343,10 @@ Cmd_ProcessToken (cmd_token_t *token)
|
||||||
{
|
{
|
||||||
int res;
|
int res;
|
||||||
|
|
||||||
|
if (!token->pos) {
|
||||||
dstring_clearstr (token->processed);
|
dstring_clearstr (token->processed);
|
||||||
dstring_appendstr (token->processed, token->original->str);
|
dstring_appendstr (token->processed, token->original->str);
|
||||||
|
}
|
||||||
res = Cmd_ProcessEmbedded (token, token->processed);
|
res = Cmd_ProcessEmbedded (token, token->processed);
|
||||||
if (res < 0)
|
if (res < 0)
|
||||||
return res;
|
return res;
|
||||||
|
|
Loading…
Reference in a new issue