[qfcc] Show def size when dumping defs

This commit is contained in:
Bill Currie 2020-03-14 22:07:36 +09:00
parent 327d692992
commit 20fd5eb80c
1 changed files with 3 additions and 2 deletions

View File

@ -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