summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorxXJSONDeruloXx <danielhimebauch@gmail.com>2025-07-18 13:20:40 -0400
committerxXJSONDeruloXx <danielhimebauch@gmail.com>2025-07-18 13:20:40 -0400
commit2bb4544db5a506fbd27e40881f924e839308f6a0 (patch)
tree7e1e5afca780be4c530209e8f6885d97134f1543
parentf1a3a283d9e79ec1534045a4276a93045abceb32 (diff)
downloaddecky-lsfg-vk-2bb4544db5a506fbd27e40881f924e839308f6a0.tar.gz
decky-lsfg-vk-2bb4544db5a506fbd27e40881f924e839308f6a0.zip
update descriptions
-rw-r--r--src/components/ConfigurationSection.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/ConfigurationSection.tsx b/src/components/ConfigurationSection.tsx
index 8aeded7..5767d08 100644
--- a/src/components/ConfigurationSection.tsx
+++ b/src/components/ConfigurationSection.tsx
@@ -113,7 +113,7 @@ export function ConfigurationSection({
<PanelSectionRow>
<DropdownItem
label="Override Vulkan present mode"
- description="Select a specific Vulkan presentation mode for better performance or compatibility"
+ description="Select a specific Vulkan presentation mode for better performance or compatibility (may cause crashes)"
menuLabel="Select presentation mode"
selectedOption={config.experimental_present_mode}
onChange={(value) => onConfigChange('experimental_present_mode', value.data)}
@@ -130,7 +130,7 @@ export function ConfigurationSection({
<PanelSectionRow>
<SliderField
label={`FPS Limit${config.experimental_fps_limit > 0 ? ` (${config.experimental_fps_limit} FPS)` : ' (Off)'}`}
- description="Base framerate cap for DirectX games, before frame multiplier"
+ description="Base framerate cap for DirectX games, before frame multiplier (requires game re-launch)"
value={config.experimental_fps_limit}
min={0}
max={60}