From b69a17a6bad56eb80a7296078a30c722bac9c253 Mon Sep 17 00:00:00 2001 From: xXJSONDeruloXx Date: Fri, 18 Jul 2025 17:08:16 -0400 Subject: re-org --- src/components/ConfigurationSection.tsx | 66 ++++++++++++++++----------------- 1 file changed, 33 insertions(+), 33 deletions(-) (limited to 'src/components/ConfigurationSection.tsx') diff --git a/src/components/ConfigurationSection.tsx b/src/components/ConfigurationSection.tsx index 8e0e74e..a55395e 100644 --- a/src/components/ConfigurationSection.tsx +++ b/src/components/ConfigurationSection.tsx @@ -107,25 +107,36 @@ export function ConfigurationSection({ color: "white" }} > - Environment Variables (Requires Re-launch) + Experimental Features - onConfigChange('enable_wow64', value)} + onConfigChange('experimental_present_mode', value.data)} + rgOptions={[ + { data: "", label: "Default" }, + { data: "fifo", label: "FIFO" }, + { data: "vsync", label: "VSync" }, + { data: "mailbox", label: "Mailbox" }, + { data: "immediate", label: "Immediate" } + ]} /> - onConfigChange('disable_steamdeck_mode', value)} + 0 ? ` (${config.experimental_fps_limit} FPS)` : ' (Off)'}`} + description="Base framerate cap for DirectX games, before frame multiplier (requires game re-launch)" + value={config.experimental_fps_limit} + min={0} + max={60} + step={1} + onChange={(value) => onConfigChange('experimental_fps_limit', value)} /> @@ -141,36 +152,25 @@ export function ConfigurationSection({ color: "white" }} > - Experimental Features + Environment Variables (Requires Re-launch) - onConfigChange('experimental_present_mode', value.data)} - rgOptions={[ - { data: "", label: "Default" }, - { data: "fifo", label: "FIFO" }, - { data: "vsync", label: "VSync" }, - { data: "mailbox", label: "Mailbox" }, - { data: "immediate", label: "Immediate" } - ]} + onConfigChange('enable_wow64', value)} /> - 0 ? ` (${config.experimental_fps_limit} FPS)` : ' (Off)'}`} - description="Base framerate cap for DirectX games, before frame multiplier (requires game re-launch)" - value={config.experimental_fps_limit} - min={0} - max={60} - step={1} - onChange={(value) => onConfigChange('experimental_fps_limit', value)} + onConfigChange('disable_steamdeck_mode', value)} /> -- cgit v1.2.3