diff options
| author | xXJSONDeruloXx <danielhimebauch@gmail.com> | 2025-07-18 21:04:10 -0400 |
|---|---|---|
| committer | xXJSONDeruloXx <danielhimebauch@gmail.com> | 2025-07-18 21:04:10 -0400 |
| commit | a96d2764f036e2ea8f8625533b2f37b8291eda31 (patch) | |
| tree | f2b707ae63f85301458bb221b10442bdb620e9b3 /src | |
| parent | fb3d3d4d3414394237cc9d664d65c14be179927f (diff) | |
| download | decky-lsfg-vk-a96d2764f036e2ea8f8625533b2f37b8291eda31.tar.gz decky-lsfg-vk-a96d2764f036e2ea8f8625533b2f37b8291eda31.zip | |
fix offset notches in multiplier
Diffstat (limited to 'src')
| -rw-r--r-- | src/components/ConfigurationSection.tsx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/components/ConfigurationSection.tsx b/src/components/ConfigurationSection.tsx index 00717bc..a55395e 100644 --- a/src/components/ConfigurationSection.tsx +++ b/src/components/ConfigurationSection.tsx @@ -56,10 +56,10 @@ export function ConfigurationSection({ step={1} notchCount={4} notchLabels={[ - { notchIndex: 1, label: "OFF" }, - { notchIndex: 2, label: "2X" }, - { notchIndex: 3, label: "3X" }, - { notchIndex: 4, label: "4X" } + { notchIndex: 0, label: "OFF" }, + { notchIndex: 1, label: "2X" }, + { notchIndex: 2, label: "3X" }, + { notchIndex: 3, label: "4X" } ]} onChange={(value) => onConfigChange('multiplier', value)} /> |
