diff options
| author | xXJSONDeruloXx <danielhimebauch@gmail.com> | 2025-07-18 23:33:42 -0400 |
|---|---|---|
| committer | xXJSONDeruloXx <danielhimebauch@gmail.com> | 2025-07-18 23:33:42 -0400 |
| commit | 2087af2315b14e82117e643c16686e9555aa9d9b (patch) | |
| tree | 8327aed1081c80dab0cbe92991c7f96292b5a7d7 /src/config | |
| parent | a96d2764f036e2ea8f8625533b2f37b8291eda31 (diff) | |
| download | decky-lsfg-vk-2087af2315b14e82117e643c16686e9555aa9d9b.tar.gz decky-lsfg-vk-2087af2315b14e82117e643c16686e9555aa9d9b.zip | |
rm circular logic bug with legacy enable bool
Diffstat (limited to 'src/config')
| -rw-r--r-- | src/config/configSchema.ts | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/src/config/configSchema.ts b/src/config/configSchema.ts index 8715057..fa54336 100644 --- a/src/config/configSchema.ts +++ b/src/config/configSchema.ts @@ -23,13 +23,6 @@ export interface ConfigField { // Configuration schema - must match Python CONFIG_SCHEMA export const CONFIG_SCHEMA: Record<string, ConfigField> = { - enable: { - name: "enable", - fieldType: ConfigFieldType.BOOLEAN, - default: true, - description: "enable/disable lsfg on every game" - }, - dll: { name: "dll", fieldType: ConfigFieldType.STRING, @@ -40,7 +33,7 @@ export const CONFIG_SCHEMA: Record<string, ConfigField> = { multiplier: { name: "multiplier", fieldType: ConfigFieldType.INTEGER, - default: 2, + default: 1, description: "change the fps multiplier" }, @@ -96,7 +89,6 @@ export const CONFIG_SCHEMA: Record<string, ConfigField> = { // Type-safe configuration data structure export interface ConfigurationData { - enable: boolean; dll: string; multiplier: number; flow_scale: number; |
