mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 15:22:04 +00:00
[qfcc] Show def size when dumping defs
This commit is contained in:
parent
327d692992
commit
20fd5eb80c
1 changed files with 3 additions and 2 deletions
|
@ -153,8 +153,9 @@ dump_def (progs_t *pr, pr_def_t *def, int indent)
|
|||
break;
|
||||
}
|
||||
}
|
||||
printf ("%*s %x %d %s %s:%x %s\n", indent * 12, "",
|
||||
offset, saveglobal, name, type, def->type_encoding, comment);
|
||||
printf ("%*s %x:%d %d %s %s:%x %s\n", indent * 12, "",
|
||||
offset, def->size, saveglobal, name, type, def->type_encoding,
|
||||
comment);
|
||||
}
|
||||
|
||||
void
|
||||
|
|
Loading…
Reference in a new issue