summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/components/ConfigurationSection.tsx13
1 files changed, 7 insertions, 6 deletions
diff --git a/src/components/ConfigurationSection.tsx b/src/components/ConfigurationSection.tsx
index a1c175a..deb8fba 100644
--- a/src/components/ConfigurationSection.tsx
+++ b/src/components/ConfigurationSection.tsx
@@ -48,16 +48,17 @@ export function ConfigurationSection({
<PanelSectionRow>
<SliderField
label="FPS Multiplier"
- description="Traditional FPS multiplier value"
+ description="Traditional FPS multiplier value (1 = no interpolation)"
value={config.multiplier}
- min={2}
+ min={1}
max={4}
step={1}
- notchCount={3}
+ notchCount={4}
notchLabels={[
- { notchIndex: 0, label: "2X" },
- { notchIndex: 1, label: "3X" },
- { notchIndex: 2, label: "4X" }
+ { notchIndex: 0, label: "1X" },
+ { notchIndex: 1, label: "2X" },
+ { notchIndex: 2, label: "3X" },
+ { notchIndex: 3, label: "4X" }
]}
onChange={(value) => onConfigChange('multiplier', value)}
/>