Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- diff --git a/tools/quake3/q3map2/light.c b/tools/quake3/q3map2/light.c
- index c70f9cf..cbe6620 100644
- --- a/tools/quake3/q3map2/light.c
- +++ b/tools/quake3/q3map2/light.c
- @@ -2032,12 +2032,6 @@ void LightWorld( const char *bspfilepath, qboolean fastAllocate ){
- bt = bounce;
- while ( bounce > 0 )
- {
- - /* store off the bsp between bounces */
- - StoreSurfaceLightmaps( fastAllocate );
- - UnparseEntities();
- - Sys_Printf( "Writing %s\n", bspfilepath );
- - WriteBSPFile( bspfilepath );
- -
- /* note it */
- Sys_Printf( "\n--- Radiosity (bounce %d of %d) ---\n", b, bt );
- @@ -2097,6 +2091,12 @@ void LightWorld( const char *bspfilepath, qboolean fastAllocate ){
- bounce--;
- b++;
- }
- +
- + /* store off the bsp */
- + StoreSurfaceLightmaps( fastAllocate );
- + UnparseEntities();
- + Sys_Printf( "Writing %s\n", bspfilepath );
- + WriteBSPFile( bspfilepath );
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement