From 8143f33548dbb1e9580a17ca1813273cff699be7 Mon Sep 17 00:00:00 2001 From: Victor Luchits Date: Thu, 14 Apr 2016 17:31:30 +0300 Subject: [PATCH] Do not call CheckPlaneAgainstParents on tiny splits --- tools/mbspc/mbspc/brushbsp.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/mbspc/mbspc/brushbsp.c b/tools/mbspc/mbspc/brushbsp.c index 7b3e9b17..5eecfa15 100644 --- a/tools/mbspc/mbspc/brushbsp.c +++ b/tools/mbspc/mbspc/brushbsp.c @@ -1016,11 +1016,11 @@ side_t *SelectSplitSide (bspbrush_t *brushes, node_t *node) pnum = side->planenum; pnum &= ~1; // allways use positive facing plane - CheckPlaneAgainstParents (pnum, node); - if (!CheckPlaneAgainstVolume (pnum, node)) continue; // would produce a tiny volume + CheckPlaneAgainstParents (pnum, node); + front = 0; back = 0; both = 0;