summaryrefslogtreecommitdiff
path: root/src/components/ConfigurationSection.tsx
diff options
context:
space:
mode:
authorKurt Himebauch <136133082+xXJSONDeruloXx@users.noreply.github.com>2025-10-20 12:21:02 -0400
committerGitHub <noreply@github.com>2025-10-20 12:21:02 -0400
commit76c1ec79a3343c356298bad383845cade214061d (patch)
treee9895aa7f298928a04ce863b6dcb8b94a1fa67a3 /src/components/ConfigurationSection.tsx
parent22fd2c9fdd26250fff22a4c1f810eeb8cc4c941d (diff)
parenta7f7d5878a037fd59fb3257daf9d5e22c63ef9e8 (diff)
downloaddecky-lsfg-vk-76c1ec79a3343c356298bad383845cade214061d.tar.gz
decky-lsfg-vk-76c1ec79a3343c356298bad383845cade214061d.zip
Merge pull request #188 from xXJSONDeruloXx/pancake-cleanup
Pancake cleanup
Diffstat (limited to 'src/components/ConfigurationSection.tsx')
-rw-r--r--src/components/ConfigurationSection.tsx11
1 files changed, 1 insertions, 10 deletions
diff --git a/src/components/ConfigurationSection.tsx b/src/components/ConfigurationSection.tsx
index 9afc650..b098b32 100644
--- a/src/components/ConfigurationSection.tsx
+++ b/src/components/ConfigurationSection.tsx
@@ -4,7 +4,7 @@ import { RiArrowDownSFill, RiArrowUpSFill } from "react-icons/ri";
import { ConfigurationData } from "../config/configSchema";
import { FpsMultiplierControl } from "./FpsMultiplierControl";
import {
- NO_FP16, FLOW_SCALE, PERFORMANCE_MODE, HDR_MODE,
+ FLOW_SCALE, PERFORMANCE_MODE, HDR_MODE,
EXPERIMENTAL_PRESENT_MODE, DXVK_FRAME_RATE, DISABLE_STEAMDECK_MODE,
MANGOHUD_WORKAROUND, DISABLE_VKBASALT, FORCE_ENABLE_VKBASALT, ENABLE_WSI, ENABLE_ZINK
} from "../config/generatedConfigSchema";
@@ -99,15 +99,6 @@ export function ConfigurationSection({
<PanelSectionRow>
<ToggleField
- label="Force Disable FP16"
- description="Force-disable FP16 acceleration"
- checked={config.no_fp16}
- onChange={(value) => onConfigChange(NO_FP16, value)}
- />
- </PanelSectionRow>
-
- <PanelSectionRow>
- <ToggleField
label="HDR Mode"
description="Enables HDR mode (only for games that support HDR)"
checked={config.hdr_mode}