diff options
| author | xXJSONDeruloXx <danielhimebauch@gmail.com> | 2025-02-08 20:45:30 -0500 |
|---|---|---|
| committer | xXJSONDeruloXx <danielhimebauch@gmail.com> | 2025-02-08 20:45:30 -0500 |
| commit | 48a07c95a1c723eae4c2091200282b50a52c83db (patch) | |
| tree | 9cdefc6c5b64b6667cca93d4d170fc2a5a6d1d84 | |
| parent | 606f2496cbf3cce62f517ba58171ed45aa69cd59 (diff) | |
| download | Decky-Framegen-48a07c95a1c723eae4c2091200282b50a52c83db.tar.gz Decky-Framegen-48a07c95a1c723eae4c2091200282b50a52c83db.zip | |
fix: clean up ui descriptions
| -rwxr-xr-x | src/index.tsx | 6 |
1 files changed, 3 insertions, 3 deletions
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} <PanelSectionRow> <div> - 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. </div> </PanelSectionRow> </PanelSection> @@ -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'); |
