From 01a616704b084cdee085c680d499fff12863d40d Mon Sep 17 00:00:00 2001 From: lizzie Date: Wed, 1 Jul 2026 06:35:03 +0000 Subject: [PATCH] force stronger read --- src/core/memory.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/memory.cpp b/src/core/memory.cpp index 55ff112154..59f2ab25f5 100644 --- a/src/core/memory.cpp +++ b/src/core/memory.cpp @@ -755,7 +755,7 @@ struct Memory::Impl { auto& gpu = system.GPU(); gpu_device_memory->ApplyOpOnPointer(p, scratch_buffers[core], [&](DAddr address) { if (flush) { - gpu.FlushRegion(address, size); + void(gpu.OnCPURead(address, size)); } gpu.InvalidateRegion(address, size); });