Skip to content
Snippets Groups Projects
Commit dcee5fe1 authored by Graham Linden's avatar Graham Linden
Browse files

NORSPEC-320 fix fullbright alpha breakage when not underwater

parent 6f62251a
No related branches found
No related tags found
No related merge requests found
......@@ -143,6 +143,8 @@ void main()
vec4 fogged = applyWaterFogDeferred(pos, vec4(color.rgb, final_alpha));
color.rgb = fogged.rgb;
color.a = fogged.a;
#else
color.a = final_alpha;
#endif
frag_color.rgb = color.rgb;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment