Browse Source

Merge pull request #8194 from Popov72/fix-lightmap-syntax

Lightmap: fix shader syntax
sebavan 5 years ago
parent
commit
25e96aec52
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/Shaders/default.fragment.fx

+ 1 - 1
src/Shaders/default.fragment.fx

@@ -258,7 +258,7 @@ void main(void) {
     #ifdef RGBDLIGHTMAP
         lightmapColor.rgb = fromRGBD(lightmapColor);
     #endif
-	lightmapColor.rgb *= vLightmapInfos.y
+	lightmapColor.rgb *= vLightmapInfos.y;
 #endif
 
 #include<lightFragment>[0..maxSimultaneousLights]