summaryrefslogtreecommitdiff
path: root/assets
diff options
context:
space:
mode:
author2lag <96544487+2lag@users.noreply.github.com>2026-08-08 17:33:36 +0200
committer2lag <96544487+2lag@users.noreply.github.com>2026-08-08 17:33:36 +0200
commit2973df584978d9aae6f164ce0204179c8a28b3ae (patch)
treec1b793c8e0d17aeb66c5197bc28acca84b2c98ab /assets
parente540910745aad31378452eec25aacfb3f346191a (diff)
console, textbox changes, some other shit
Diffstat (limited to 'assets')
-rw-r--r--assets/shaders/2d.fsh2
1 files changed, 1 insertions, 1 deletions
diff --git a/assets/shaders/2d.fsh b/assets/shaders/2d.fsh
index 5702970..ae24dc2 100644
--- a/assets/shaders/2d.fsh
+++ b/assets/shaders/2d.fsh
@@ -15,7 +15,7 @@ void main() {
if( g_sampler != SAMPLER_ID_NONE ) {
vec4 tex_color = batch_sample( g_texcoord );
color *= tex_color;
- if (color.a < 0.01) discard;
+ if(color.a < 0.01) discard;
}
gl_FragColor = color;
}