From a6e34fa632e5ce17e6ea5d66a2e0702a9e741ef8 Mon Sep 17 00:00:00 2001 From: user18081972 <124319511+user18081972@users.noreply.github.com> Date: Sun, 21 Jul 2024 06:09:27 +0000 Subject: [PATCH] Fix ui_step for crt-consumer.fx (#3256) For crt-consumer.fx, the ui_step was set to 0, for Scanlines bright/dark. This commit changes it to 0.05 (same as in Retroarch). --- data/resources/shaders/reshade/Shaders/crt/crt-consumer.fx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/data/resources/shaders/reshade/Shaders/crt/crt-consumer.fx b/data/resources/shaders/reshade/Shaders/crt/crt-consumer.fx index 25a61de2d..2b8f1d5c0 100644 --- a/data/resources/shaders/reshade/Shaders/crt/crt-consumer.fx +++ b/data/resources/shaders/reshade/Shaders/crt/crt-consumer.fx @@ -111,7 +111,7 @@ uniform float beamlow < ui_type = "drag"; ui_min = 0.5; ui_max = 2.5; - ui_step = 0.0; + ui_step = 0.05; ui_label = "Scanlines dark"; > = 1.45; @@ -119,7 +119,7 @@ uniform float beamhigh < ui_type = "drag"; ui_min = 0.5; ui_max = 2.5; - ui_step = 0.0; + ui_step = 0.05; ui_label = "Scanlines bright"; > = 1.05;