qbsp: revert change to SphereOnPlaneSide for now as it's breaking tests

This commit is contained in:
Eric Wasylishen 2022-07-06 23:36:59 -06:00
parent ba26bacb7c
commit 5cd178e105
1 changed files with 2 additions and 2 deletions

View File

@ -295,8 +295,8 @@ static int TestBrushToPlanenum(const bspbrush_t &brush, int planenum, int *numsp
plane = map.planes[planenum]; plane = map.planes[planenum];
} }
int s = SphereOnPlaneSide(brush.sphere_origin, brush.sphere_radius, plane); //int s = SphereOnPlaneSide(brush.sphere_origin, brush.sphere_radius, plane);
//int s = BoxOnPlaneSide(brush.bounds, plane); int s = BoxOnPlaneSide(brush.bounds, plane);
if (s != PSIDE_BOTH) if (s != PSIDE_BOTH)
return s; return s;