mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2024-11-21 21:35:38 +00:00
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).
This commit is contained in:
parent
d9ada75d4f
commit
a6e34fa632
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in a new issue