don't bother displaying "processing hull" for q2

This commit is contained in:
Jonathan 2022-08-06 17:42:38 -04:00
parent 335db1c0e4
commit 4c15e6f717
1 changed files with 3 additions and 1 deletions

View File

@ -776,7 +776,9 @@ CreateSingleHull
*/
static void CreateSingleHull(const int hullnum)
{
logging::print("Processing hull {}...\n", hullnum);
if (hullnum >= 0) {
logging::print("Processing hull {}...\n", hullnum);
}
// for each entity in the map file that has geometry
for (auto &entity : map.entities) {