summaryrefslogtreecommitdiff
path: root/main.py
diff options
context:
space:
mode:
authorKurt Himebauch <136133082+xXJSONDeruloXx@users.noreply.github.com>2025-09-16 13:23:42 -0400
committerGitHub <noreply@github.com>2025-09-16 13:23:42 -0400
commit3ddf071506e02b7580afe20684148cf345381c9d (patch)
treec0af68fb2bdfa6e2576f74a4735eb76fa89da445 /main.py
parent76ee4ac8fc9cedf14b25a5053f5af2cad3754198 (diff)
parent03e8021d541c4c64c1003b0000cfe6fa45746ec4 (diff)
downloadDecky-Framegen-3ddf071506e02b7580afe20684148cf345381c9d.tar.gz
Decky-Framegen-3ddf071506e02b7580afe20684148cf345381c9d.zip
Merge pull request #134 from xXJSONDeruloXx/fsr4-dropin
feat: add int8 custom fsr dll, set opti ini to fsr4 true
Diffstat (limited to 'main.py')
-rw-r--r--main.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/main.py b/main.py
index f14bd97..b0352dd 100644
--- a/main.py
+++ b/main.py
@@ -77,7 +77,7 @@ class Plugin:
updated_content = re.sub(r'FGType\s*=\s*auto', 'FGType=nukems', content)
# Replace Fsr4Update=auto with Fsr4Update=true
- # updated_content = re.sub(r'Fsr4Update\s*=\s*auto', 'Fsr4Update=true', updated_content)
+ updated_content = re.sub(r'Fsr4Update\s*=\s*auto', 'Fsr4Update=true', updated_content)
with open(ini_file, 'w') as f:
f.write(updated_content)