From 3e83a83339a42c1a998f774649ad151a14c19b35 Mon Sep 17 00:00:00 2001 From: PavelBARABANOV Date: Thu, 12 Feb 2026 07:04:44 +0300 Subject: [PATCH] forgot --- 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 dc7711a6cf..e508fc16e5 100644 --- a/src/video_core/fence_manager.h +++ b/src/video_core/fence_manager.h @@ -72,7 +72,7 @@ public: } void SignalFence(std::function&& func) { - const bool delay_fence = Settings::IsGPULevelHigh(); + const bool delay_fence = Settings::IsGPULevelHigh() || (Settings::IsGPULevelMedium() && should_flush); const bool should_flush = ShouldFlush(); #ifdef __ANDROID__ const bool early_release_fences = Settings::values.early_release_fences.GetValue();