mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-23 12:52:46 +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;
|
||||
|
||||
dstring_clearstr (token->processed);
|
||||
dstring_appendstr (token->processed, token->original->str);
|
||||
if (!token->pos) {
|
||||
dstring_clearstr (token->processed);
|
||||
dstring_appendstr (token->processed, token->original->str);
|
||||
}
|
||||
res = Cmd_ProcessEmbedded (token, token->processed);
|
||||
if (res < 0)
|
||||
return res;
|
||||
|
|
Loading…
Reference in a new issue