mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-03-20 01:11:18 +00:00
Fix for older compilers that only allow variables to be declared at the top
of a program block.
This commit is contained in:
parent
1668dd5c1a
commit
06cd013fc6
1 changed files with 1 additions and 2 deletions
|
@ -476,11 +476,10 @@ GIB_Parse_Embedded (const char *program, unsigned int flags, gib_tree_t **embedd
|
|||
{
|
||||
unsigned int i, n, t;
|
||||
char c, d, *str;
|
||||
gib_parse_error = false;
|
||||
|
||||
gib_tree_t *lines = 0, **line = &lines, *cur, *tokens, *emb, *tmp;
|
||||
unsigned int start, end;
|
||||
|
||||
gib_parse_error = false;
|
||||
*embedded = 0;
|
||||
|
||||
for (i = 0; program[i]; i++) {
|
||||
|
|
Loading…
Reference in a new issue