From 4c15e6f717ec40fb331e30a7a0c46616d5897bf6 Mon Sep 17 00:00:00 2001 From: Jonathan Date: Sat, 6 Aug 2022 17:42:38 -0400 Subject: [PATCH] don't bother displaying "processing hull" for q2 --- qbsp/qbsp.cc | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/qbsp/qbsp.cc b/qbsp/qbsp.cc index 2115daec..ae322fca 100644 --- a/qbsp/qbsp.cc +++ b/qbsp/qbsp.cc @@ -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) {