mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 15:22:04 +00:00
finish (for now:/) qfo_to_progs
This commit is contained in:
parent
24e242ed35
commit
e815669b7a
1 changed files with 6 additions and 1 deletions
|
@ -476,7 +476,12 @@ qfo_to_progs (qfo_t *qfo, pr_info_t *pr)
|
|||
i < pr->num_functions; i++) {
|
||||
*pr->func_tail = pf;
|
||||
pr->func_tail = &pf->next;
|
||||
pf->aux = 0;//XXX
|
||||
pf->aux = new_auxfunction ();
|
||||
pf->aux->function = i + 1;
|
||||
pf->aux->source_line = qf->line;
|
||||
pf->aux->line_info = qf->line_info;
|
||||
pf->aux->local_defs = qf->local_defs;
|
||||
pf->aux->num_locals = qf->num_local_defs;
|
||||
pf->builtin = qf->builtin;
|
||||
pf->code = qf->code;
|
||||
pf->function_num = i + 1;
|
||||
|
|
Loading…
Reference in a new issue