diff --git a/wadsrc/static/engine/shaders/glsl/polymost.fp b/wadsrc/static/engine/shaders/glsl/polymost.fp index cf2266cec..eacde0db7 100644 --- a/wadsrc/static/engine/shaders/glsl/polymost.fp +++ b/wadsrc/static/engine/shaders/glsl/polymost.fp @@ -214,7 +214,7 @@ void main() if ((u_flags & RF_Brightmapping) != 0) { - lightcolor = texture(s_brightmap, v_texCoord.xy).rgb; + lightcolor += texture(s_brightmap, v_texCoord.xy).rgb; } color.rgb *= lightcolor; color.rgb += u_fogColor.rgb * shade;