summaryrefslogtreecommitdiff
path: root/src/components/ConfigurationSection.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/ConfigurationSection.tsx')
-rw-r--r--src/components/ConfigurationSection.tsx11
1 files changed, 1 insertions, 10 deletions
diff --git a/src/components/ConfigurationSection.tsx b/src/components/ConfigurationSection.tsx
index 538975e..f332ad2 100644
--- a/src/components/ConfigurationSection.tsx
+++ b/src/components/ConfigurationSection.tsx
@@ -3,7 +3,7 @@ import { useState, useEffect } from "react";
import { RiArrowDownSFill, RiArrowUpSFill } from "react-icons/ri";
import { ConfigurationData } from "../config/configSchema";
import {
- ACTIVE_IN, ALLOW_FP16, DISABLE_LSFGVK, DLL, FLOW_SCALE, GPU,
+ ACTIVE_IN, ALLOW_FP16, DLL, FLOW_SCALE, GPU,
PERFORMANCE_MODE, USE_NATIVE_MATCHING, DXVK_FRAME_RATE, DISABLE_STEAMDECK_MODE,
MANGOHUD_WORKAROUND, DISABLE_VKBASALT, FORCE_ENABLE_VKBASALT, ENABLE_WSI, ENABLE_ZINK
} from "../config/generatedConfigSchema";
@@ -136,15 +136,6 @@ export function ConfigurationSection({
<PanelSectionRow>
<ToggleField
- label="Disable Frame Generation"
- description="Disables lsfg-vk on the next game launch. Requires a game restart."
- checked={config.disable_lsfgvk}
- onChange={(value) => onConfigChange(DISABLE_LSFGVK, value)}
- />
- </PanelSectionRow>
-
- <PanelSectionRow>
- <ToggleField
label="Allow FP16"
description="Improves performance on AMD; disable for older NVIDIA GPUs."
checked={config.allow_fp16}