From a5c61739512a44b4c5771d8352d1cb32221d80ce Mon Sep 17 00:00:00 2001 From: neon443 <69979447+neon443@users.noreply.github.com> Date: Tue, 26 Aug 2025 16:14:24 +0100 Subject: [PATCH] tweak --- ShhShell/Terminal/CRT.metal | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ShhShell/Terminal/CRT.metal b/ShhShell/Terminal/CRT.metal index 145384a..33d7e05 100644 --- a/ShhShell/Terminal/CRT.metal +++ b/ShhShell/Terminal/CRT.metal @@ -18,7 +18,7 @@ using namespace metal; //scanlines newCol *= 0.5 + 0.5 * sin(uv.y * 1250.0); // half4 output = half4(layer.sample(pos).xyz*newCol, 1); - half4 output = half4(color.xyz*newCol*0.24, 0.25); + half4 output = half4(color.xyz*newCol*0.5, 0.5); return output; }