summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorxXJSONDeruloXx <danielhimebauch@gmail.com>2025-01-31 14:38:42 -0500
committerxXJSONDeruloXx <danielhimebauch@gmail.com>2025-01-31 14:38:42 -0500
commit1d5c164460c027ee71fe118d45ec286065ab841f (patch)
tree7c56323fbe83379c4b7b4d1eefdca04e454f24f9
parent51adc16366f7b8a420bfd6415985f88720363f5b (diff)
downloadDecky-Framegen-0.6.0.tar.gz
Decky-Framegen-0.6.0.zip
feat: speed up path check interval, mod installtion detection snappierv0.6.0
-rwxr-xr-xsrc/index.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/index.tsx b/src/index.tsx
index 851e003..fb4d3ae 100755
--- a/src/index.tsx
+++ b/src/index.tsx
@@ -51,7 +51,7 @@ function FGModInstallerSection() {
checkPath(); // Initial check
- const intervalId = setInterval(checkPath, 5000); // Check every 5 seconds
+ const intervalId = setInterval(checkPath, 3000); // Check every 3 seconds
return () => clearInterval(intervalId); // Cleanup interval on component unmount
}, []);
@@ -155,7 +155,7 @@ function FGModInstallerSection() {
)}
<PanelSectionRow>
<div>
- Once the mod is installed, patch one of the games below to replace DLSS upscale and frame gen options with FSR 3 equivalents. *games with launchers not currently supported.
+ Once installed, patch a games below to replace DLSS upscale and frame gen options with FSR 3 equivalents. * NON STEAM GAMES, GAMES WITH LAUNCHERS, AND DX11 OR BELOW NOT SUPPORTED.
</div>
</PanelSectionRow>
</PanelSection>