summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xsrc/index.tsx4
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}`);