mirror of
https://github.com/cemu-project/cemu_graphic_packs.git
synced 2025-04-29 06:49:28 -04:00
fix $custom bug
This commit is contained in:
parent
c8b12bba74
commit
75918b9015
2 changed files with 4 additions and 4 deletions
|
@ -15,7 +15,7 @@ $vibrance:float = 0.0 # 0.0 no extra vibrance
|
|||
$mixBalance:float = 1.0 # FXAA, bicubic sharpen or smooth pass -> Reserved for FX / Contrasty rework
|
||||
$glare:float = 0.95 # Reflection shader raise/lower to balance clipping -> Reserved for FX / Contrasty rework
|
||||
$lift:float = 0.002 # Raise shadows -> Reserved for FX / Contrasty rework
|
||||
$isCustom:int = 0
|
||||
$isCustom = 0
|
||||
|
||||
##Pre packed settings
|
||||
[Preset]
|
||||
|
@ -61,14 +61,14 @@ $vibrance:float = 0.45
|
|||
[Preset]
|
||||
name = Custom
|
||||
category = Standard presets
|
||||
$isCustom:int = 1
|
||||
$isCustom = 1
|
||||
|
||||
|
||||
##exposure
|
||||
[Preset]
|
||||
name = 70% less exposure
|
||||
category = Exposure and brightness fix
|
||||
condition = $custom == 1
|
||||
condition = $isCustom == 1
|
||||
$exposure:float = 0.32
|
||||
|
||||
[Preset]
|
||||
|
|
|
@ -110,7 +110,7 @@ $crushContrast = 0.75
|
|||
[Preset]
|
||||
name = 70% less exposure (AMD)
|
||||
category = Exposure
|
||||
condition = $custom == 1
|
||||
condition = $isCustom == 1
|
||||
$exposure = 0.32
|
||||
|
||||
[Preset]
|
||||
|
|
Loading…
Add table
Reference in a new issue