Revert "light: Face_Pick: make more lenient"

This reverts commit 5292728fe3.
This commit is contained in:
Eric Wasylishen 2017-02-15 00:54:26 -07:00
parent d811d33d22
commit ea9c456367
1 changed files with 1 additions and 1 deletions

View File

@ -566,7 +566,7 @@ Face_Pick(const bsp2_t *bsp, const glm::vec3 &point)
const auto plane = Face_Plane_E(bsp, f);
const float planedist = GLM_DistAbovePlane(plane, point);
if (fabs(planedist) > 1)
if (fabs(planedist) > ON_EPSILON)
continue;
const auto points = GLM_FacePoints(bsp, f);