From 261d6da37d315decc82e8ce2da8d895085967b35 Mon Sep 17 00:00:00 2001 From: Eric Wasylishen Date: Mon, 22 May 2023 23:01:07 -0600 Subject: [PATCH] qbsp: revert b994bb7 "disable CheckPlaneAgainstVolume checks" it was causing leaks through solids --- qbsp/brushbsp.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qbsp/brushbsp.cc b/qbsp/brushbsp.cc index 1e4c3210..50f2836e 100644 --- a/qbsp/brushbsp.cc +++ b/qbsp/brushbsp.cc @@ -46,7 +46,7 @@ constexpr int PSIDE_BOTH = (PSIDE_FRONT | PSIDE_BACK); // this gets OR'ed in in the return value of QuickTestBrushToPlanenum if one of the brush sides is on the input plane constexpr int PSIDE_FACING = 4; -#define CHECK_PLANE_AGAINST_VOLUME 0 +#define CHECK_PLANE_AGAINST_VOLUME 1 struct bspstats_t : logging::stat_tracker_t {