From 38f61b9658597b8dc2a01337d16d723773fbf2f1 Mon Sep 17 00:00:00 2001 From: lightningterror <18107717+lightningterror@users.noreply.github.com> Date: Sat, 6 Dec 2025 01:21:25 +0100 Subject: [PATCH] GS/HW: Exclude date check for late draw cancel. No rt change, no rgba write, no depth write, no need to check date this late. --- pcsx2/GS/Renderers/HW/GSRendererHW.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pcsx2/GS/Renderers/HW/GSRendererHW.cpp b/pcsx2/GS/Renderers/HW/GSRendererHW.cpp index 57e55590ae..ea59b2544f 100644 --- a/pcsx2/GS/Renderers/HW/GSRendererHW.cpp +++ b/pcsx2/GS/Renderers/HW/GSRendererHW.cpp @@ -7681,7 +7681,7 @@ __ri void GSRendererHW::DrawPrims(GSTextureCache::Target* rt, GSTextureCache::Ta } // Similar to IsRTWritten(), check if the rt will change. - const bool no_rt = !rt || !(DATE || m_conf.colormask.wrgba || m_channel_shuffle); + const bool no_rt = !rt || !(m_conf.colormask.wrgba || m_channel_shuffle); const bool no_ds = !ds || // Depth will be written through the RT. (!no_rt && m_cached_ctx.FRAME.FBP == m_cached_ctx.ZBUF.ZBP && !PRIM->TME && m_cached_ctx.ZBUF.ZMSK == 0 &&