diff options
| author | xXJsonDeruloXx <danielhimebauch@gmail.com> | 2026-08-06 21:26:40 -0400 |
|---|---|---|
| committer | xXJsonDeruloXx <danielhimebauch@gmail.com> | 2026-08-06 21:26:40 -0400 |
| commit | 598931c87995a9e2f3af045ca51c736729ae5197 (patch) | |
| tree | 95999a21ffd0b2ecb83c8b1b226aced4ddbbd171 /src/components/FpsMultiplierControl.tsx | |
| parent | 6435769b270c8f849839a971f21b802a3f70662e (diff) | |
| download | decky-lsfg-vk-598931c87995a9e2f3af045ca51c736729ae5197.tar.gz decky-lsfg-vk-598931c87995a9e2f3af045ca51c736729ae5197.zip | |
fix: expose runtime 1x passthrough in Decky
Diffstat (limited to 'src/components/FpsMultiplierControl.tsx')
| -rw-r--r-- | src/components/FpsMultiplierControl.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/FpsMultiplierControl.tsx b/src/components/FpsMultiplierControl.tsx index 3f559ea..b9a0f80 100644 --- a/src/components/FpsMultiplierControl.tsx +++ b/src/components/FpsMultiplierControl.tsx @@ -33,8 +33,8 @@ export function FpsMultiplierControl({ padding: "5px 0px 0px 0px", minWidth: "40px", }} - onClick={() => onConfigChange(MULTIPLIER, Math.max(2, config.multiplier - 1))} - disabled={config.multiplier <= 2} + onClick={() => onConfigChange(MULTIPLIER, Math.max(1, config.multiplier - 1))} + disabled={config.multiplier <= 1} > − </DialogButton> |
