summaryrefslogtreecommitdiff
path: root/main.py
diff options
context:
space:
mode:
Diffstat (limited to 'main.py')
-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}")