mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-03-20 01:11:18 +00:00
print the function number when dumping functions
This commit is contained in:
parent
32a85e7130
commit
e8a834d6a4
1 changed files with 1 additions and 1 deletions
|
@ -126,7 +126,7 @@ dump_functions (progs_t *pr)
|
|||
else
|
||||
comment = va (" = #%d", -start);
|
||||
|
||||
printf ("%s%s: %d", name, comment, func->numparms);
|
||||
printf ("%-5d %s%s: %d", i, name, comment, func->numparms);
|
||||
if (func->numparms < 0)
|
||||
count = -func->numparms - 1;
|
||||
else
|
||||
|
|
Loading…
Reference in a new issue