From 60df9eba813d4b2ce6dbc2183dfd64927912f2d8 Mon Sep 17 00:00:00 2001 From: Jonathan Date: Tue, 21 Jun 2022 21:07:26 -0400 Subject: [PATCH] disable `ChooseMidPlaneFromList` to fix regression --- qbsp/solidbsp.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/qbsp/solidbsp.cc b/qbsp/solidbsp.cc index 12916424..076a7584 100644 --- a/qbsp/solidbsp.cc +++ b/qbsp/solidbsp.cc @@ -506,8 +506,10 @@ static const face_t *SelectPartition(const std::vector> } } +#if 0 if (usemidsplit || largenode) // do fast way for clipping hull return ChooseMidPlaneFromList(brushes, bounds); +#endif // do slow way to save poly splits for drawing hull return ChoosePlaneFromList(brushes, bounds);