bspinfo: fix format string

This commit is contained in:
Eric Wasylishen 2022-11-04 00:53:34 -06:00
parent 221ea65efb
commit ca45f06bdf
1 changed files with 1 additions and 1 deletions

View File

@ -2713,7 +2713,7 @@ void PrintBSPFileSizes(const bspdata_t *bspdata)
}
if (bspdata->bspx.entries.size()) {
logging::print("\n{:<16 {:10}\n", "BSPX lump name", "byte size");
logging::print("\n{:<16} {:10}\n", "BSPX lump name", "byte size");
for (auto &x : bspdata->bspx.entries) {
logging::print("{:<16} {:10}\n", x.first, x.second.size());