From 8d5f8371971f51c5d1ab8a6f87b09ffc9a241de9 Mon Sep 17 00:00:00 2001 From: Jonathan Date: Wed, 3 Aug 2022 20:29:33 -0400 Subject: [PATCH] fix new degenerate edge warnings --- qbsp/brush.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qbsp/brush.cc b/qbsp/brush.cc index 5033f2cb..a1f1e061 100644 --- a/qbsp/brush.cc +++ b/qbsp/brush.cc @@ -286,7 +286,7 @@ void CreateBrushWindings(bspbrush_t *brush) if (brush->sides[j].bevel) continue; qplane3d plane = -Face_Plane(&brush->sides[j]); - w = w->clip(plane, 0, false)[SIDE_FRONT]; // CLIP_EPSILON); + w = w->clip(plane, qbsp_options.epsilon.value(), false)[SIDE_FRONT]; // CLIP_EPSILON); } if (w) {