diff options
| author | xXJSONDeruloXx <danielhimebauch@gmail.com> | 2025-01-27 23:50:26 -0500 |
|---|---|---|
| committer | xXJSONDeruloXx <danielhimebauch@gmail.com> | 2025-01-27 23:50:26 -0500 |
| commit | 0105c0a913e166622e07a29a7c283ed582a5252e (patch) | |
| tree | b77c635236fdd79407da31bad553197b8732a69c | |
| parent | 01d46886d19f29029819d66ba1c9fb6b5f1b90d7 (diff) | |
| download | Decky-Framegen-0105c0a913e166622e07a29a7c283ed582a5252e.tar.gz Decky-Framegen-0105c0a913e166622e07a29a7c283ed582a5252e.zip | |
unpatch oversignt, set correct launch opts
| -rwxr-xr-x | src/index.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/index.tsx b/src/index.tsx index 0021c4f..5e5e82d 100755 --- a/src/index.tsx +++ b/src/index.tsx @@ -271,8 +271,8 @@ function InstalledGamesSection() { const handleUnpatchClick = async (game: { appid: number; name: string }) => { setClickedGame(game); try { - await SteamClient.Apps.SetAppLaunchOptions(game.appid, ''); // Remove custom launch options - setResult(`Launch options cleared for ${game.name}. The game is now unpatched.`); + await SteamClient.Apps.SetAppLaunchOptions(game.appid, '/home/deck/fgmod/fgmod-uninstaller.sh'); // Remove custom launch options + setResult(`DLSS mods will uninstall on next launch of ${game.name}. The game is now unpatched.`); } catch (error) { if (error instanceof Error) { setResult(`Error clearing launch options: ${error.message}`); |
