From 201a1f0264f7cac98099a305d52db044e5d350ba Mon Sep 17 00:00:00 2001 From: Wojtek Figat Date: Sun, 19 Nov 2023 22:10:11 +0100 Subject: [PATCH] Fix PostFx settings in Graphics Settings to be only used when checked as override --- Source/Engine/Graphics/Graphics.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Source/Engine/Graphics/Graphics.cpp b/Source/Engine/Graphics/Graphics.cpp index fa03fb7cd..f91c58cea 100644 --- a/Source/Engine/Graphics/Graphics.cpp +++ b/Source/Engine/Graphics/Graphics.cpp @@ -67,7 +67,8 @@ void GraphicsSettings::Apply() Graphics::AllowCSMBlending = AllowCSMBlending; Graphics::GlobalSDFQuality = GlobalSDFQuality; Graphics::GIQuality = GIQuality; - Graphics::PostProcessSettings = PostProcessSettings; + Graphics::PostProcessSettings = ::PostProcessSettings(); + Graphics::PostProcessSettings.BlendWith(PostProcessSettings, 1.0f); } void Graphics::DisposeDevice()