From fd6e9e36d716f9e8c80705474a190117bcad6c7c Mon Sep 17 00:00:00 2001 From: PavelBARABANOV Date: Thu, 12 Feb 2026 07:14:34 +0300 Subject: [PATCH] f --- src/video_core/fence_manager.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/video_core/fence_manager.h b/src/video_core/fence_manager.h index e508fc16e5..1b4aa6bc05 100644 --- a/src/video_core/fence_manager.h +++ b/src/video_core/fence_manager.h @@ -72,8 +72,8 @@ public: } void SignalFence(std::function&& func) { - const bool delay_fence = Settings::IsGPULevelHigh() || (Settings::IsGPULevelMedium() && should_flush); const bool should_flush = ShouldFlush(); + const bool delay_fence = Settings::IsGPULevelHigh() || (Settings::IsGPULevelMedium() && should_flush); #ifdef __ANDROID__ const bool early_release_fences = Settings::values.early_release_fences.GetValue(); #else