summaryrefslogtreecommitdiff
path: root/py_modules/lsfg_vk/config_schema.py
diff options
context:
space:
mode:
authorxXJSONDeruloXx <danielhimebauch@gmail.com>2026-09-07 16:02:26 -0400
committerxXJSONDeruloXx <danielhimebauch@gmail.com>2026-09-07 16:02:26 -0400
commit22db1125238e54b29538102727c36284e122e703 (patch)
tree9fb5f2bc5a00256dc811e4dbbd1e963c5492c48c /py_modules/lsfg_vk/config_schema.py
parentf48ff4b541b1ef877905bda248459460a943dd6e (diff)
downloaddecky-lsfg-vk-22db1125238e54b29538102727c36284e122e703.tar.gz
decky-lsfg-vk-22db1125238e54b29538102727c36284e122e703.zip
feat: refine game discovery and profile UX
Diffstat (limited to 'py_modules/lsfg_vk/config_schema.py')
-rw-r--r--py_modules/lsfg_vk/config_schema.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/py_modules/lsfg_vk/config_schema.py b/py_modules/lsfg_vk/config_schema.py
index 675ab61..ce109f3 100644
--- a/py_modules/lsfg_vk/config_schema.py
+++ b/py_modules/lsfg_vk/config_schema.py
@@ -20,7 +20,7 @@ PROFILE_DEFAULTS: Dict[str, Any] = {
"active_in": [],
"pacing_mode": "vsync",
"multiplier": 2,
- "flow_scale": 1.0,
+ "flow_scale": 0.8,
"performance_mode": False,
"override_present_mode": True,
"preserve_swapchain_image_count": False,
@@ -78,7 +78,7 @@ class ConfigurationManager:
if not path_value:
return ""
path = Path(path_value)
- if path.name.lower() in {"lossless.dll", "losslessscaling.dll"}:
+ if path.name.lower() in {"lossless.dll"}:
return str(path.with_name("lsfg-vk.dll"))
return path_value