From 91ea2ae81c86ddf6eca5afe3baa8265cce091f7b Mon Sep 17 00:00:00 2001 From: Rudolf Polzer Date: Fri, 22 Oct 2010 09:36:40 +0200 Subject: [PATCH] be more verbose about randomsamples presets --- tools/quake3/q3map2/light.c | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/tools/quake3/q3map2/light.c b/tools/quake3/q3map2/light.c index b5310890..2d5a81df 100644 --- a/tools/quake3/q3map2/light.c +++ b/tools/quake3/q3map2/light.c @@ -2770,13 +2770,22 @@ int LightMain( int argc, char **argv ) { /* somewhat okay */ case 1: - case 2: lightSamples = 16; break; + case 2: + lightSamples = 16; + Sys_Printf( "Adaptive supersampling preset enabled with %d random sample(s) per lightmap texel\n", lightSamples ); + break; /* good */ - case 3: lightSamples = 64; break; + case 3: + lightSamples = 64; + Sys_Printf( "Adaptive supersampling preset enabled with %d random sample(s) per lightmap texel\n", lightSamples ); + break; /* perfect */ - case 4: lightSamples = 256; break; + case 4: + lightSamples = 256; + Sys_Printf( "Adaptive supersampling preset enabled with %d random sample(s) per lightmap texel\n", lightSamples ); + break; default: break; } -- 2.39.2