summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorxXJSONDeruloXx <danielhimebauch@gmail.com>2025-07-24 09:11:42 -0400
committerxXJSONDeruloXx <danielhimebauch@gmail.com>2025-07-24 09:11:42 -0400
commit402d8fb6856acd893a61d2052666d54058de64b0 (patch)
treef83e9286649dff9e0e076e71ebf54976da2ddfcb
parent9bc43f5f7cec9e7bacc0e35903e1cbb1578414c6 (diff)
downloaddecky-lsfg-vk-402d8fb6856acd893a61d2052666d54058de64b0.tar.gz
decky-lsfg-vk-402d8fb6856acd893a61d2052666d54058de64b0.zip
revert lsfg-vk fork that was crashing decks
-rw-r--r--package.json4
-rw-r--r--shared_config.py8
-rw-r--r--src/components/ConfigurationSection.tsx12
3 files changed, 2 insertions, 22 deletions
diff --git a/package.json b/package.json
index 000da33..41fe911 100644
--- a/package.json
+++ b/package.json
@@ -46,8 +46,8 @@
"remote_binary": [
{
"name": "lsfg-vk_archlinux.zip",
- "url": "https://github.com/xXJSONDeruloXx/lsfg-vk/releases/download/fps-target-conf/lsfg-vk_archlinux.zip",
- "sha256hash": "770f8b8c8698c6bbe7715f2c1dffe76979e40ca89462cd553f5ee6d8bdc7bdd4"
+ "url": "https://github.com/xXJSONDeruloXx/lsfg-vk/releases/download/upstream-16403902734/lsfg-vk_archlinux.zip",
+ "sha256hash": "220628261bfea8c81661d37fd0069a02214e85dbf32e28dcb08c5f55a6193075"
}
],
diff --git a/shared_config.py b/shared_config.py
index 72dcf11..68c7b82 100644
--- a/shared_config.py
+++ b/shared_config.py
@@ -44,14 +44,6 @@ CONFIG_SCHEMA_DEF = {
"location": "toml"
},
- "target_total_fps": {
- "name": "target_total_fps",
- "fieldType": ConfigFieldType.FLOAT,
- "default": 0.0,
- "description": "specify your post-frame gen target framerate to force specific frame pacing logic. 0 = default pacing",
- "location": "toml"
- },
-
"performance_mode": {
"name": "performance_mode",
"fieldType": ConfigFieldType.BOOLEAN,
diff --git a/src/components/ConfigurationSection.tsx b/src/components/ConfigurationSection.tsx
index 7c5d9ca..01b0ba1 100644
--- a/src/components/ConfigurationSection.tsx
+++ b/src/components/ConfigurationSection.tsx
@@ -50,18 +50,6 @@ export function ConfigurationSection({
</PanelSectionRow>
<PanelSectionRow>
- <SliderField
- label={`Target Total FPS ${config.target_total_fps === 0 ? '(Default)' : config.target_total_fps.toFixed(0)}`}
- description="Specify your post-frame gen target framerate to force specific frame pacing logic. 0 = default pacing"
- value={config.target_total_fps}
- min={0}
- max={144}
- step={1}
- onChange={(value) => onConfigChange(TARGET_TOTAL_FPS, value)}
- />
- </PanelSectionRow>
-
- <PanelSectionRow>
<ToggleField
label="Performance Mode"
description="Uses a lighter model for FG (Recommended for most games)"