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) {