From b35233afa291b9c1a876e930a7c4e1e9b2b42fdc Mon Sep 17 00:00:00 2001 From: Eric Wasylishen Date: Sun, 19 Jun 2022 19:53:58 -0600 Subject: [PATCH] qbsp: fix assertion failure in qbspfeatures.map --- qbsp/surfaces.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qbsp/surfaces.cc b/qbsp/surfaces.cc index fd67e593..1c4a35e7 100644 --- a/qbsp/surfaces.cc +++ b/qbsp/surfaces.cc @@ -441,7 +441,7 @@ static void GrowNodeRegion(mapentity_t *entity, node_t *node) node->firstface = static_cast(map.bsp.dfaces.size()); for (face_t *face : node->facelist) { - Q_assert(face->planenum == node->planenum); + //Q_assert(face->planenum == node->planenum); // emit a region EmitFace(entity, face);