From 8123c44ad172acb1e85a143e517dfd54cc9b8ba4 Mon Sep 17 00:00:00 2001 From: Missake Date: Mon, 24 Nov 2025 02:28:48 +0100 Subject: [PATCH] Make FSR off by default (#3801) * Make FSR and RCAS off by default * Update config.cpp --- src/common/config.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/config.cpp b/src/common/config.cpp index 4d3e1d877..b0f068142 100644 --- a/src/common/config.cpp +++ b/src/common/config.cpp @@ -177,7 +177,7 @@ static ConfigEntry isFullscreen(false); static ConfigEntry fullscreenMode("Windowed"); static ConfigEntry presentMode("Mailbox"); static ConfigEntry isHDRAllowed(false); -static ConfigEntry fsrEnabled(true); +static ConfigEntry fsrEnabled(false); static ConfigEntry rcasEnabled(true); static ConfigEntry rcasAttenuation(250);