From 3e82409c108a6dd7037650402f26d24ff96c3910 Mon Sep 17 00:00:00 2001 From: Stenzek Date: Fri, 25 Aug 2023 21:53:33 +1000 Subject: [PATCH] GPU/HW: Fix base settings not updating on change --- src/core/gpu_hw.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/core/gpu_hw.cpp b/src/core/gpu_hw.cpp index b094d65ba..13722a16f 100644 --- a/src/core/gpu_hw.cpp +++ b/src/core/gpu_hw.cpp @@ -284,6 +284,8 @@ void GPU_HW::RestoreGraphicsAPIState() void GPU_HW::UpdateSettings() { + GPU::UpdateSettings(); + const u32 resolution_scale = CalculateResolutionScale(); const u32 multisamples = std::min(g_settings.gpu_multisamples, g_gpu_device->GetMaxMultisamples()); const bool per_sample_shading = g_settings.gpu_per_sample_shading && m_supports_per_sample_shading;