From c192b231eebe5291ab41236efc6f21b8aaac7902 Mon Sep 17 00:00:00 2001 From: MaranBr Date: Thu, 24 Sep 2026 22:41:56 +0200 Subject: [PATCH] Missed that --- src/video_core/buffer_cache/buffer_cache.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/video_core/buffer_cache/buffer_cache.h b/src/video_core/buffer_cache/buffer_cache.h index b2dae5fe70..9a5d6f322a 100644 --- a/src/video_core/buffer_cache/buffer_cache.h +++ b/src/video_core/buffer_cache/buffer_cache.h @@ -249,7 +249,7 @@ bool BufferCache

::DMACopy(GPUVAddr src_address, GPUVAddr dest_address, u64 am runtime.CopyBuffer(dest_buffer, src_buffer, copies, true); if (has_new_downloads) { memory_tracker.MarkRegionAsGpuModified(*cpu_dest_address, amount); - const bool should_sync = Settings::IsGPUFenceBehaviorBalanced(); + const bool should_sync = Settings::IsGPUFenceBehaviorBalanced() || Settings::IsGPUFenceBehaviorAccurate(); if (should_sync) { runtime.Finish(); }