From: Thomas Debesse Date: Mon, 22 Feb 2021 23:03:47 +0000 (+0100) Subject: q3map2: add a comment for future readers X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=ddd58413784982766742f5bd515a47685a5c6d1a;p=xonotic%2Fnetradiant.git q3map2: add a comment for future readers --- diff --git a/tools/quake3/q3map2/main.c b/tools/quake3/q3map2/main.c index b7c91f15..9db48d11 100644 --- a/tools/quake3/q3map2/main.c +++ b/tools/quake3/q3map2/main.c @@ -220,6 +220,8 @@ int ShiftBSPMain( int argc, char **argv ){ { //find point on plane for ( j=0; j<3; j++ ){ + // This line being commented out is an unexplained change by Garux + // see dd7f4f1689e8ede7580bdfa8e08d0b78d08f5253 //point[j] = bspPlanes[ i ].dist * bspPlanes[ i ].normal[j]; if ( fabs( bspPlanes[ i ].normal[j] ) > 0.5 ){ point[j] = bspPlanes[ i ].dist / bspPlanes[ i ].normal[j];