summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorxXJSONDeruloXx <danielhimebauch@gmail.com>2025-07-24 15:34:29 -0400
committerxXJSONDeruloXx <danielhimebauch@gmail.com>2025-07-24 15:34:29 -0400
commitc89ff70c791fde106ff69476a78a0818bfe7f6df (patch)
tree4da6c7acb6e205f1d63d6b3fabc4f67379ffc31b /src
parent23d7d951867cf8df9611cf16b3d5af64ddcd03a8 (diff)
downloaddecky-lsfg-vk-c89ff70c791fde106ff69476a78a0818bfe7f6df.tar.gz
decky-lsfg-vk-c89ff70c791fde106ff69476a78a0818bfe7f6df.zip
wording
Diffstat (limited to 'src')
-rw-r--r--src/components/ConfigurationSection.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/ConfigurationSection.tsx b/src/components/ConfigurationSection.tsx
index 3ad3dfc..a1aca09 100644
--- a/src/components/ConfigurationSection.tsx
+++ b/src/components/ConfigurationSection.tsx
@@ -79,7 +79,7 @@ export function ConfigurationSection({
<PanelSectionRow>
<ToggleField
label={`Present Mode (${(config.experimental_present_mode || "fifo") === "fifo" ? "FIFO - VSync" : "Mailbox"})`}
- description="Toggle between FIFO -VSync (default) and Mailbox presentation modes for better performance or compatibility"
+ description="Toggle between FIFO - VSync (default) and Mailbox presentation modes for better performance or compatibility"
checked={(config.experimental_present_mode || "fifo") === "fifo"}
onChange={(value) => onConfigChange(EXPERIMENTAL_PRESENT_MODE, value ? "fifo" : "mailbox")}
/>