mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-01-17 22:50:51 +00:00
Fix a braino that most likely broke concatenation.
This commit is contained in:
parent
2364c49741
commit
61d315755a
1 changed files with 6 additions and 1 deletions
|
@ -241,7 +241,12 @@ GIB_Parse_Tokens (const char *program, unsigned int *i, unsigned int pofs, gib_t
|
||||||
}
|
}
|
||||||
cat = CAT_CONCAT;
|
cat = CAT_CONCAT;
|
||||||
(*i)++;
|
(*i)++;
|
||||||
continue;
|
while (program[*i] != '\n' && isspace ((byte) program[*i]))
|
||||||
|
(*i)++;
|
||||||
|
if (program[*i] == ',') {
|
||||||
|
GIB_Parse_Error("Double comma error.", *i+pofs);
|
||||||
|
goto ERROR;
|
||||||
|
}
|
||||||
} else
|
} else
|
||||||
cat = CAT_NORMAL;
|
cat = CAT_NORMAL;
|
||||||
// New line/command?
|
// New line/command?
|
||||||
|
|
Loading…
Reference in a new issue