From e29f904b5693ca59161792e82247fd7faa61972e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henrik=20Rydg=C3=A5rd?= Date: Fri, 1 Dec 2017 11:15:29 +0100 Subject: [PATCH] Despam a sceDmacMemcpy report. Happens in Naruto Shippuden: Ultimate Impact, accordint to reports. --- Core/HLE/sceDmac.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Core/HLE/sceDmac.cpp b/Core/HLE/sceDmac.cpp index ea509746f7..da48432e8b 100644 --- a/Core/HLE/sceDmac.cpp +++ b/Core/HLE/sceDmac.cpp @@ -79,7 +79,7 @@ static u32 sceDmacMemcpy(u32 dst, u32 src, u32 size) { } if (dmacMemcpyDeadline > CoreTiming::GetTicks()) { - WARN_LOG_REPORT(HLE, "sceDmacMemcpy(dest=%08x, src=%08x, size=%i): overlapping read", dst, src, size); + WARN_LOG_REPORT_ONCE(overlapDmacMemcpy, HLE, "sceDmacMemcpy(dest=%08x, src=%08x, size=%d): overlapping read", dst, src, size); // TODO: Should block, seems like copy doesn't start until previous finishes. // Might matter for overlapping copies. } else {