summaryrefslogtreecommitdiff
path: root/src/components/ConfigurationSection.tsx
diff options
context:
space:
mode:
authorxXJSONDeruloXx <danielhimebauch@gmail.com>2025-07-26 14:53:30 -0400
committerxXJSONDeruloXx <danielhimebauch@gmail.com>2025-07-26 14:53:30 -0400
commitab8ddfef740ad2877e4d82be6471474c89755653 (patch)
treea297382b9f0d2c77b14fc3f12597b43a760c6ec0 /src/components/ConfigurationSection.tsx
parentb4fbaf233f6e190001cb40f4f0cc87cc5365e622 (diff)
downloaddecky-lsfg-vk-ab8ddfef740ad2877e4d82be6471474c89755653.tar.gz
decky-lsfg-vk-ab8ddfef740ad2877e4d82be6471474c89755653.zip
swap wsi disable to enable, ui toggle off state as enable = 0 on default
Diffstat (limited to 'src/components/ConfigurationSection.tsx')
-rw-r--r--src/components/ConfigurationSection.tsx10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/components/ConfigurationSection.tsx b/src/components/ConfigurationSection.tsx
index c1fcf25..d208f97 100644
--- a/src/components/ConfigurationSection.tsx
+++ b/src/components/ConfigurationSection.tsx
@@ -6,7 +6,7 @@ import { FpsMultiplierControl } from "./FpsMultiplierControl";
import {
FLOW_SCALE, PERFORMANCE_MODE, HDR_MODE,
EXPERIMENTAL_PRESENT_MODE, DXVK_FRAME_RATE, DISABLE_STEAMDECK_MODE,
- MANGOHUD_WORKAROUND, DISABLE_VKBASALT, FORCE_ENABLE_VKBASALT, DEACTIVATE_WSI
+ MANGOHUD_WORKAROUND, DISABLE_VKBASALT, FORCE_ENABLE_VKBASALT, ENABLE_WSI
} from "../config/generatedConfigSchema";
interface ConfigurationSectionProps {
@@ -163,10 +163,10 @@ export function ConfigurationSection({
<>
<PanelSectionRow>
<ToggleField
- label="Deactivate WSI"
- description="Deactivates Gamescope WSI Layer, use with HDR off, workaround if frame generation isn't applying or isn't feeling smooth"
- checked={config.deactivate_wsi}
- onChange={(value) => onConfigChange(DEACTIVATE_WSI, value)}
+ label="Enable WSI"
+ description="Enable Gamescope WSI Layer, disable if frame generation isn't applying or isn't feeling smooth (use with HDR off)"
+ checked={config.enable_wsi}
+ onChange={(value) => onConfigChange(ENABLE_WSI, value)}
/>
</PanelSectionRow>