aboutsummaryrefslogtreecommitdiffstats
path: root/shaders/world.frag
diff options
context:
space:
mode:
Diffstat (limited to 'shaders/world.frag')
-rw-r--r--shaders/world.frag2
1 files changed, 1 insertions, 1 deletions
diff --git a/shaders/world.frag b/shaders/world.frag
index 87d86ca..d6f4395 100644
--- a/shaders/world.frag
+++ b/shaders/world.frag
@@ -17,7 +17,7 @@ void main()
vec4 pixTex = texture2D(texture, texLoc);
if (pixTex.a < 0.1f)
discard;
-
+
vec4 shadeColor = vec4(0.0f, 0.0f, 0.0f, 0.0f);
if (lightImpact > 0.0f) {
for (int i = 0; i < lightSize; i++) {