bsputil: display number of models
This commit is contained in:
parent
ed66ed112e
commit
985271f689
|
|
@ -1265,6 +1265,8 @@ PrintBSPFileSizes(const bspdata_t *bspdata)
|
|||
if (bsp->texdatasize)
|
||||
numtextures = bsp->dtexdata.header->nummiptex;
|
||||
|
||||
logprint("%7i %-12s\n", bsp->nummodels, "models");
|
||||
|
||||
PrintLumpSize(lumpspec, LUMP_PLANES, bsp->numplanes);
|
||||
PrintLumpSize(lumpspec, LUMP_VERTEXES, bsp->numvertexes);
|
||||
PrintLumpSize(lumpspec, LUMP_NODES, bsp->numnodes);
|
||||
|
|
@ -1289,6 +1291,8 @@ PrintBSPFileSizes(const bspdata_t *bspdata)
|
|||
if (bsp->texdatasize)
|
||||
numtextures = bsp->dtexdata.header->nummiptex;
|
||||
|
||||
logprint("%7i %-12s\n", bsp->nummodels, "models");
|
||||
|
||||
PrintLumpSize(lumpspec, LUMP_PLANES, bsp->numplanes);
|
||||
PrintLumpSize(lumpspec, LUMP_VERTEXES, bsp->numvertexes);
|
||||
PrintLumpSize(lumpspec, LUMP_NODES, bsp->numnodes);
|
||||
|
|
@ -1313,6 +1317,8 @@ PrintBSPFileSizes(const bspdata_t *bspdata)
|
|||
if (bsp->texdatasize)
|
||||
numtextures = bsp->dtexdata.header->nummiptex;
|
||||
|
||||
logprint("%7i %-12s\n", bsp->nummodels, "models");
|
||||
|
||||
PrintLumpSize(lumpspec, LUMP_PLANES, bsp->numplanes);
|
||||
PrintLumpSize(lumpspec, LUMP_VERTEXES, bsp->numvertexes);
|
||||
PrintLumpSize(lumpspec, LUMP_NODES, bsp->numnodes);
|
||||
|
|
|
|||
Loading…
Reference in New Issue