diff options
| author | Kurt Himebauch <136133082+xXJSONDeruloXx@users.noreply.github.com> | 2026-05-19 14:34:55 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-05-19 14:34:55 -0400 |
| commit | 92737d9dbae61e25fb0b2f816475d10285f0ff67 (patch) | |
| tree | c7f2228aa45fd4325a68de6fe6f32864f383791c /src/components/InstalledGamesSection.tsx | |
| parent | 9e12c11b6189972ea04de454dad5c8554efe657a (diff) | |
| parent | 19e5aefa2f41ebd4389bf27136adacf3e75d3502 (diff) | |
| download | Decky-Framegen-0.15.5.tar.gz Decky-Framegen-0.15.5.zip | |
feat: update OptiScaler bundle and add FSR4 runtime manifests
Diffstat (limited to 'src/components/InstalledGamesSection.tsx')
| -rw-r--r-- | src/components/InstalledGamesSection.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/InstalledGamesSection.tsx b/src/components/InstalledGamesSection.tsx index 04d653b..e0e2677 100644 --- a/src/components/InstalledGamesSection.tsx +++ b/src/components/InstalledGamesSection.tsx @@ -48,7 +48,7 @@ export function InstalledGamesSection() { strCancelButtonText="Cancel" onOK={async () => { try { - await SteamClient.Apps.SetAppLaunchOptions(selectedGame.appid, '~/fgmod/fgmod %COMMAND%'); + await SteamClient.Apps.SetAppLaunchOptions(Number(selectedGame.appid), '~/fgmod/fgmod %COMMAND%'); setResult(`Frame generation enabled for ${selectedGame.name}. Launch the game, enable DLSS in graphics settings, then press Insert to access OptiScaler options.`); } catch (error) { logError('handlePatchClick: ' + String(error)); @@ -63,7 +63,7 @@ export function InstalledGamesSection() { if (!selectedGame) return; try { - await SteamClient.Apps.SetAppLaunchOptions(selectedGame.appid, '~/fgmod/fgmod-uninstaller.sh %COMMAND%'); + await SteamClient.Apps.SetAppLaunchOptions(Number(selectedGame.appid), '~/fgmod/fgmod-uninstaller.sh %COMMAND%'); setResult(`Frame generation will be disabled on next launch of ${selectedGame.name}.`); } catch (error) { logError('handleUnpatchClick: ' + String(error)); |
