summaryrefslogtreecommitdiff
path: root/shared_config.py
diff options
context:
space:
mode:
authorKurt Himebauch <136133082+xXJSONDeruloXx@users.noreply.github.com>2025-10-21 23:54:40 -0400
committerGitHub <noreply@github.com>2025-10-21 23:54:40 -0400
commit4dae7ed1c8d8c5acdc115ee3cbc9fecae622b0cc (patch)
tree58db3626b3678546e5cb1c4de9bcfc627fde46c7 /shared_config.py
parent0742fbac1c6c27af1e11aec6e5231d2dc70e78ff (diff)
parent53ff3cf75dc903ff1cc82bce9d11e2eaf13f4d81 (diff)
downloaddecky-lsfg-vk-4dae7ed1c8d8c5acdc115ee3cbc9fecae622b0cc.tar.gz
decky-lsfg-vk-4dae7ed1c8d8c5acdc115ee3cbc9fecae622b0cc.zip
Merge pull request #190 from xXJSONDeruloXx/cleanup-misc
More cleanup
Diffstat (limited to 'shared_config.py')
-rw-r--r--shared_config.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/shared_config.py b/shared_config.py
index 5b0a45d..997717b 100644
--- a/shared_config.py
+++ b/shared_config.py
@@ -18,14 +18,13 @@ class ConfigFieldType(str, Enum):
STRING = "string"
-# Canonical configuration schema - source of truth
CONFIG_SCHEMA_DEF = {
"dll": {
"name": "dll",
"fieldType": ConfigFieldType.STRING,
"default": "/games/Lossless Scaling/Lossless.dll",
"description": "specify where Lossless.dll is stored",
- "location": "toml" # where this field is stored/used
+ "location": "toml"
},
"no_fp16": {
@@ -81,7 +80,7 @@ CONFIG_SCHEMA_DEF = {
"fieldType": ConfigFieldType.INTEGER,
"default": 0,
"description": "base framerate cap for DirectX games before frame multiplier",
- "location": "script" # script-only field
+ "location": "script"
},
"enable_wow64": {