X-Git-Url: https://de.git.xonotic.org/?p=xonotic%2Fnetradiant.git;a=blobdiff_plain;f=tools%2Fquake3%2Fq3map2%2Flightmaps_ydnar.c;h=1b28ca06935e860ddefddc1b3e536f0f23870960;hp=8b44eaf32002f1ce467eeb117348c6d9c501f2bf;hb=043d08127ab87117ddfd16e8b439f47c6b66a87f;hpb=0a8e8e98c332c54c5a1cbc0a22b1e0483075a6b5 diff --git a/tools/quake3/q3map2/lightmaps_ydnar.c b/tools/quake3/q3map2/lightmaps_ydnar.c index 8b44eaf3..1b28ca06 100644 --- a/tools/quake3/q3map2/lightmaps_ydnar.c +++ b/tools/quake3/q3map2/lightmaps_ydnar.c @@ -890,7 +890,6 @@ static int CompareSurfaceInfo( const void *a, const void *b ){ return -1; } - /* then lightmap sample size */ if ( aInfo->sampleSize < bInfo->sampleSize ) { return 1; @@ -2505,7 +2504,7 @@ void StoreSurfaceLightmaps( qboolean fastAllocate ){ ----------------------------------------------------------------- */ /* note it */ - Sys_Printf( "Subsampling..." ); + Sys_FPrintf( SYS_VRB, "Subsampling..." ); /* walk the list of raw lightmaps */ numUsed = 0; @@ -2973,7 +2972,7 @@ void StoreSurfaceLightmaps( qboolean fastAllocate ){ if ( noCollapse == qfalse && deluxemap == qfalse ) { /* note it */ - Sys_Printf( "collapsing..." ); + Sys_FPrintf( SYS_VRB, "collapsing..." ); /* set all twin refs to null */ for ( i = 0; i < numRawLightmaps; i++ ) @@ -3042,7 +3041,7 @@ void StoreSurfaceLightmaps( qboolean fastAllocate ){ ----------------------------------------------------------------- */ /* note it */ - Sys_Printf( "sorting..." ); + Sys_FPrintf( SYS_VRB, "sorting..." ); /* allocate a new sorted list */ if ( sortLightmaps == NULL ) { @@ -3059,7 +3058,7 @@ void StoreSurfaceLightmaps( qboolean fastAllocate ){ ----------------------------------------------------------------- */ /* note it */ - Sys_Printf( "allocating..." ); + Sys_FPrintf( SYS_VRB, "allocating..." ); /* kill all existing output lightmaps */ if ( outLightmaps != NULL ) { @@ -3112,7 +3111,7 @@ void StoreSurfaceLightmaps( qboolean fastAllocate ){ ----------------------------------------------------------------- */ /* note it */ - Sys_Printf( "storing..." ); + Sys_FPrintf( SYS_VRB, "storing..." ); /* count the bsp lightmaps and allocate space */ if ( bspLightBytes != NULL ) { @@ -3182,7 +3181,7 @@ void StoreSurfaceLightmaps( qboolean fastAllocate ){ } if ( numExtLightmaps > 0 ) { - Sys_Printf( "\n" ); + Sys_FPrintf( SYS_VRB, "\n" ); } /* delete unused external lightmaps */ @@ -3203,7 +3202,7 @@ void StoreSurfaceLightmaps( qboolean fastAllocate ){ ----------------------------------------------------------------- */ /* note it */ - Sys_Printf( "projecting..." ); + Sys_FPrintf( SYS_VRB, "projecting..." ); /* walk the list of surfaces */ for ( i = 0; i < numBSPDrawSurfaces; i++ ) @@ -3482,7 +3481,7 @@ void StoreSurfaceLightmaps( qboolean fastAllocate ){ } /* finish */ - Sys_Printf( "done.\n" ); + Sys_FPrintf( SYS_VRB, "done.\n" ); /* calc num stored */ numStored = numBSPLightBytes / 3;