mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 15:22:04 +00:00
Fix a braino that caused COM_execute_sets to work improperly.
This commit is contained in:
parent
2d766710b6
commit
15687970b3
1 changed files with 1 additions and 1 deletions
|
@ -218,7 +218,7 @@ static void
|
|||
COM_execute_sets (cbuf_t *cbuf)
|
||||
{
|
||||
dstring_t *buf = DATA(cbuf)->buf;
|
||||
dstring_t *line = DATA(cbuf)->buf;
|
||||
dstring_t *line = DATA(cbuf)->line;
|
||||
while (*buf->str) {
|
||||
COM_extract_line (cbuf);
|
||||
COM_TokenizeString (line->str, cbuf->args);
|
||||
|
|
Loading…
Reference in a new issue