]> git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - r_shadow.c
changed several DPrint's and developer cvar checks to higher developer cvar levels...
[xonotic/darkplaces.git] / r_shadow.c
index a255a51f714dc3cb1bffafab7ecb40ef2cda6867..566158af45f3818b73ab2752039d1e7cade172b2 100644 (file)
@@ -2174,7 +2174,8 @@ void R_RTLight_Compile(rtlight_t *rtlight)
                }
        }
 
-       Con_DPrintf("static light built: %f %f %f : %f %f %f box, %i shadow volume triangles (in %i meshes)\n", rtlight->cullmins[0], rtlight->cullmins[1], rtlight->cullmins[2], rtlight->cullmaxs[0], rtlight->cullmaxs[1], rtlight->cullmaxs[2], shadowtris, shadowmeshes);
+       if (developer.integer >= 10)
+               Con_Printf("static light built: %f %f %f : %f %f %f box, %i shadow volume triangles (in %i meshes)\n", rtlight->cullmins[0], rtlight->cullmins[1], rtlight->cullmins[2], rtlight->cullmaxs[0], rtlight->cullmaxs[1], rtlight->cullmaxs[2], shadowtris, shadowmeshes);
 }
 
 void R_RTLight_Uncompile(rtlight_t *rtlight)