summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorxXJSONDeruloXx <danielhimebauch@gmail.com>2025-07-23 00:07:25 -0400
committerxXJSONDeruloXx <danielhimebauch@gmail.com>2025-07-23 00:07:25 -0400
commit0e4a0f153304b16f63e2ef6f80bbc724b64d986a (patch)
treed336a465f6f814d28e00f06e152c1b513249f41c
parentb0621d15c675b7b8c1615b0699cc85ea1430a728 (diff)
downloadDecky-Framegen-0e4a0f153304b16f63e2ef6f80bbc724b64d986a.tar.gz
Decky-Framegen-0e4a0f153304b16f63e2ef6f80bbc724b64d986a.zip
comment out fsr4 enable as potential crash cause
-rw-r--r--main.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/main.py b/main.py
index 05456bd..44d02a4 100644
--- a/main.py
+++ b/main.py
@@ -77,12 +77,12 @@ 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)
- decky.logger.info("Modified OptiScaler.ini to set FGType=nukems and Fsr4Update=true")
+ decky.logger.info("Modified OptiScaler.ini to set FGType=nukems")
return True
else:
decky.logger.warning(f"OptiScaler.ini not found at {ini_file}")