From e527157474ff3da294f0ccd6e5190d39414920fe Mon Sep 17 00:00:00 2001 From: bluepilledgreat <97983689+bluepilledgreat@users.noreply.github.com> Date: Fri, 7 Apr 2023 17:16:45 +0100 Subject: [PATCH] save flag changes --- Bloxstrap/Integrations/IntegrationCleaner.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Bloxstrap/Integrations/IntegrationCleaner.cs b/Bloxstrap/Integrations/IntegrationCleaner.cs index 85ca132..f961f24 100644 --- a/Bloxstrap/Integrations/IntegrationCleaner.cs +++ b/Bloxstrap/Integrations/IntegrationCleaner.cs @@ -26,7 +26,10 @@ namespace Bloxstrap.Integrations // reshade also forced dx11 // so lets change that back!!! if (App.FastFlags.GetValue(FastFlagManager.RenderingModes["Direct3D 11"]) != null) + { App.FastFlags.SetRenderingMode("Automatic"); + App.FastFlags.Save(); + } } }