Skip to content

Commit

Permalink
Fix ui_step for crt-consumer.fx (#3256)
Browse files Browse the repository at this point in the history
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).
  • Loading branch information
user18081972 authored Jul 21, 2024
1 parent d9ada75 commit a6e34fa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions data/resources/shaders/reshade/Shaders/crt/crt-consumer.fx
Original file line number Diff line number Diff line change
Expand Up @@ -111,15 +111,15 @@ 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;

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;

Expand Down

0 comments on commit a6e34fa

Please sign in to comment.