]> de.git.xonotic.org Git - xonotic/netradiant.git/blobdiff - tools/quake3/q3map2/light_trace.c
tools: reduce diff noise
[xonotic/netradiant.git] / tools / quake3 / q3map2 / light_trace.c
index cb22bb44407cb8bfcc60419296bf8017a4c82c80..f58bd4ac4a9db93a1a3183d507b4f56d74c35091 100644 (file)
@@ -56,7 +56,8 @@
 #define GROW_TRACE_NODES        16384       //%        16384
 #define GROW_NODE_ITEMS         16          //%        256
 
-#define MAX_TW_VERTS            24 // vortex: increased from 12 to 24 for ability co compile some insane maps with large curve count
+// vortex: increased from 12 to 24 for ability co compile some insane maps with large curve count
+#define MAX_TW_VERTS            24
 
 #define TRACE_ON_EPSILON        0.1f
 
@@ -198,9 +199,6 @@ static int AllocTraceNode( void ){
        memset( &traceNodes[ numTraceNodes ], 0, sizeof( traceNode_t ) );
        traceNodes[ numTraceNodes ].type = TRACE_LEAF;
        ClearBounds( traceNodes[ numTraceNodes ].mins, traceNodes[ numTraceNodes ].maxs );
-
-       /* Sys_Printf("alloc node %d\n", numTraceNodes); */
-
        numTraceNodes++;
 
        /* return the count */
@@ -406,8 +404,6 @@ static int SetupTraceNodes_r( int bspNodeNum ){
                }
        }
 
-       /* Sys_Printf("node %d children: %d %d\n", nodeNum, traceNodes[ nodeNum ].children[0], traceNodes[ nodeNum ].children[1]); */
-
        /* return node number */
        return nodeNum;
 }