From 1a614efce1f5384489324a6468fac8908492f5ba Mon Sep 17 00:00:00 2001 From: Garux Date: Wed, 25 Mar 2020 21:21:07 +0300 Subject: [PATCH] q3map2 * fix: do not affect styled lightmaps by floodlight port of https://github.com/id-tech-3-tools/map-compiler/pull/12 https://github.com/id-tech-3-tools/map-compiler/commit/87b8589a3a5069c482243bb33c587fc18911746c --- tools/quake3/q3map2/light_ydnar.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tools/quake3/q3map2/light_ydnar.c b/tools/quake3/q3map2/light_ydnar.c index 91f8bbdc..1ded2a24 100644 --- a/tools/quake3/q3map2/light_ydnar.c +++ b/tools/quake3/q3map2/light_ydnar.c @@ -4484,6 +4484,9 @@ void FloodlightIlluminateLightmap( rawLightmap_t *lm ){ continue; } + if( lm->styles[lightmapNum] != LS_NORMAL && lm->styles[lightmapNum] != LS_NONE ) // isStyleLight + continue; + /* apply floodlight to each luxel */ for ( y = 0; y < lm->sh; y++ ) {