From 0105c0a913e166622e07a29a7c283ed582a5252e Mon Sep 17 00:00:00 2001 From: xXJSONDeruloXx Date: Mon, 27 Jan 2025 23:50:26 -0500 Subject: unpatch oversignt, set correct launch opts --- src/index.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/index.tsx') 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}`); -- cgit v1.2.3