summaryrefslogtreecommitdiff
path: root/main.py
diff options
context:
space:
mode:
authorxXJSONDeruloXx <danielhimebauch@gmail.com>2025-09-16 10:46:41 -0400
committerxXJSONDeruloXx <danielhimebauch@gmail.com>2025-09-16 10:46:41 -0400
commit32056631e97d3f09ea4b04e19584a6bb1be52717 (patch)
treece8da9d1ce9395d37e0492e7b3343e5f819911d3 /main.py
parent76ee4ac8fc9cedf14b25a5053f5af2cad3754198 (diff)
downloadDecky-Framegen-32056631e97d3f09ea4b04e19584a6bb1be52717.tar.gz
Decky-Framegen-32056631e97d3f09ea4b04e19584a6bb1be52717.zip
feat: add int8 custom fsr dll, set opti ini to fsr4 truev0.11.14
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)