From 48a07c95a1c723eae4c2091200282b50a52c83db Mon Sep 17 00:00:00 2001 From: xXJSONDeruloXx Date: Sat, 8 Feb 2025 20:45:30 -0500 Subject: fix: clean up ui descriptions --- src/index.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/index.tsx') diff --git a/src/index.tsx b/src/index.tsx index e55bf6b..6631ddc 100755 --- a/src/index.tsx +++ b/src/index.tsx @@ -169,7 +169,7 @@ function FGModInstallerSection() { ) : null}
- Assign a back button to 'insert' keyboard key to use Optiscaler and enable FG in non FG games. + Install the mod above, then select and patch a game.
@@ -210,7 +210,7 @@ function InstalledGamesSection() { try { await SteamClient.Apps.SetAppLaunchOptions(selectedGame.appid, '~/fgmod/fgmod %COMMAND%'); - setResult(`Launch options set successfully for ${selectedGame.name}. You can now select DLSS in the game's menu to use FSR Upscaling and FrameGen equivalents.`); + setResult(`Launch options set for ${selectedGame.name}. You can now select DLSS in the game's menu.`); } catch (error) { logError('handlePatchClick: ' + String(error)); setResult(error instanceof Error ? `Error setting launch options: ${error.message}` : 'Error setting launch options'); @@ -222,7 +222,7 @@ function InstalledGamesSection() { try { await SteamClient.Apps.SetAppLaunchOptions(selectedGame.appid, '~/fgmod/fgmod-uninstaller.sh %COMMAND%'); - setResult(`DLSS mods will uninstall on next launch of ${selectedGame.name}. The game is now unpatched.`); + setResult(`DLSS mods will uninstall on next launch of ${selectedGame.name}.`); } catch (error) { logError('handleUnpatchClick: ' + String(error)); setResult(error instanceof Error ? `Error clearing launch options: ${error.message}` : 'Error clearing launch options'); -- cgit v1.2.3