Skip to content

Commit 797ea50

Browse files
author
Antoine Fontaine
committed
Fix broken shader that prevents game start
1 parent 355b044 commit 797ea50

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/engine/renderer/glsl_source/generic_fp.glsl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,13 +77,13 @@ void main()
7777
#endif
7878

7979
color *= var_Color;
80-
80+
8181
SHADER_PROFILER_SET( color )
8282

8383
outputColor = color;
8484

8585
// Debugging.
86-
if defined(USE_MATERIAL_SYSTEM) && defined(r_showGlobalMaterials)
86+
#if defined(USE_MATERIAL_SYSTEM) && defined(r_showGlobalMaterials)
8787
outputColor.rgb = u_MaterialColour;
8888
#endif
8989
}

0 commit comments

Comments
 (0)