]> git.rm.cloudns.org Git - xonotic/netradiant.git/commitdiff
Revert excessive check uis/lightfix
authoruis <uis9936@gmail.com>
Thu, 11 Apr 2024 15:22:25 +0000 (18:22 +0300)
committeruis <uis9936@gmail.com>
Thu, 11 Apr 2024 15:22:25 +0000 (18:22 +0300)
tools/quake3/q3map2/light_ydnar.c

index 380ed24353e8ca4885abb35831d770d69e2d9fe2..fef0536db4799e8945f8fda464e9831dc38a48f5 100644 (file)
@@ -1006,12 +1006,6 @@ static qboolean MapQuad( rawLightmap_t *lm, surfaceInfo_t *info, bspDrawVert_t *
                return qfalse;
        }
 
-       /* prevent division by zero */
-       if ( plane[ lm->axisNum ] == 0 ) {
-               Sys_FPrintf( SYS_WRN, "WARNING: plane[lm->axisNum] == 0\n" );
-               return qfalse;
-       }
-
        /* 4th point must fall on the plane */
        dist = DotProduct( plane, dv[ 3 ]->xyz ) - plane[ 3 ];
        if ( fabs( dist ) > QUAD_PLANAR_EPSILON ) {