summaryrefslogtreecommitdiff
path: root/src/config/configSchema.ts
diff options
context:
space:
mode:
authorKurt Himebauch <136133082+xXJSONDeruloXx@users.noreply.github.com>2025-07-19 08:40:49 -0400
committerGitHub <noreply@github.com>2025-07-19 08:40:49 -0400
commitf010473bfdf6b9a58960a5dac71fa48837ae6a1c (patch)
treec0392ef13b7cc47bc27369e7840e58fa23e745b7 /src/config/configSchema.ts
parentb9302548a4def670c8600086ba8685c075ceac3d (diff)
parent75a94598341899eea5260206975686c05e793956 (diff)
downloaddecky-lsfg-vk-f010473bfdf6b9a58960a5dac71fa48837ae6a1c.tar.gz
decky-lsfg-vk-f010473bfdf6b9a58960a5dac71fa48837ae6a1c.zip
Merge pull request #41 from xXJSONDeruloXx/nerd-stuffv0.6.4
Nerd stuff
Diffstat (limited to 'src/config/configSchema.ts')
-rw-r--r--src/config/configSchema.ts10
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;