From 04df42f8e07127112a4075bb232c85df83e383a0 Mon Sep 17 00:00:00 2001 From: Eric Wasylishen Date: Sat, 17 Sep 2022 21:00:01 -0600 Subject: [PATCH] qbsp: CreateSingleHull: remove unnecessary side.visible clearing (now done in CreateBrushWindings) --- qbsp/qbsp.cc | 7 ------- 1 file changed, 7 deletions(-) diff --git a/qbsp/qbsp.cc b/qbsp/qbsp.cc index 0fd2dd41..1d25b45f 100644 --- a/qbsp/qbsp.cc +++ b/qbsp/qbsp.cc @@ -895,13 +895,6 @@ static void CreateSingleHull(hull_index_t hullnum) ProcessEntity(entity, hullnum); - // reset any global brush stuff - for (auto &brush : entity.mapbrushes) { - for (auto &side : brush.faces) { - side.visible = false; - } - } - // restore logging logging::mask = prev_logging_mask; }