diff options
| author | xXJSONDeruloXx <danielhimebauch@gmail.com> | 2025-10-20 11:15:23 -0400 |
|---|---|---|
| committer | xXJSONDeruloXx <danielhimebauch@gmail.com> | 2025-10-20 11:15:23 -0400 |
| commit | 2d718e686431b05e0767b1bd1efa1584487998d0 (patch) | |
| tree | 56ffb02ab7694254bbaf6e8fffbe91abbc316a68 /src | |
| parent | 2b348fb00027766547084f2f348c62952956ac00 (diff) | |
| download | decky-lsfg-vk-2d718e686431b05e0767b1bd1efa1584487998d0.tar.gz decky-lsfg-vk-2d718e686431b05e0767b1bd1efa1584487998d0.zip | |
feat: always set no_fp16 false even on previous conf
Diffstat (limited to 'src')
| -rw-r--r-- | src/components/ConfigurationSection.tsx | 11 |
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} |
