summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/components/ConfigurationSection.tsx14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/components/ConfigurationSection.tsx b/src/components/ConfigurationSection.tsx
index 85ca463..5afd8f6 100644
--- a/src/components/ConfigurationSection.tsx
+++ b/src/components/ConfigurationSection.tsx
@@ -98,12 +98,12 @@ export function ConfigurationSection({
<PanelSectionRow>
<DropdownItem
label="Override Vulkan present mode"
- description="Select a specific Vulkan presentation mode for better performance or compatibility (may cause crashes)"
+ description="Select a specific Vulkan presentation mode for better performance or compatibility (May cause crashes)"
menuLabel="Select presentation mode"
selectedOption={config.experimental_present_mode || "fifo"}
onChange={(value) => onConfigChange('experimental_present_mode', value.data)}
rgOptions={[
- { data: "fifo", label: "FIFO (VSync)" },
+ { data: "fifo", label: "FIFO (VSync) - Default" },
{ data: "mailbox", label: "Mailbox" },
{ data: "immediate", label: "Immediate" }
]}
@@ -122,14 +122,14 @@ export function ConfigurationSection({
color: "white"
}}
>
- Environment Variables (Requires Re-launch)
+ Environment Variables (Requires re-launch)
</div>
</PanelSectionRow>
<PanelSectionRow>
<SliderField
- label={`DXVK Frame Rate${config.dxvk_frame_rate > 0 ? ` (${config.dxvk_frame_rate} FPS)` : ' (Off)'}`}
- description="Base framerate cap for DirectX games, before frame multiplier (requires game re-launch)"
+ label={`Base FPS Cap${config.dxvk_frame_rate > 0 ? ` (${config.dxvk_frame_rate} FPS)` : ' (Off)'}`}
+ description="Base framerate cap for DirectX games, before frame multiplier"
value={config.dxvk_frame_rate}
min={0}
max={60}
@@ -141,7 +141,7 @@ export function ConfigurationSection({
<PanelSectionRow>
<ToggleField
label="Enable WOW64 for 32-bit games"
- description="Enables PROTON_USE_WOW64=1 for 32-bit games (use with ProtonGE to fix crashing)"
+ description="Enables PROTON_USE_WOW64=1 for 32-bit games (Use with ProtonGE to fix crashing)"
checked={config.enable_wow64}
onChange={(value) => onConfigChange('enable_wow64', value)}
/>
@@ -150,7 +150,7 @@ export function ConfigurationSection({
<PanelSectionRow>
<ToggleField
label="Disable Steam Deck Mode"
- description="Disables Steam Deck mode (unlocks hidden settings in some games)"
+ description="Disables Steam Deck mode (Unlocks hidden settings in some games)"
checked={config.disable_steamdeck_mode}
onChange={(value) => onConfigChange('disable_steamdeck_mode', value)}
/>