From 644241959a2df1d01e7dab0048ef0048e5ff7785 Mon Sep 17 00:00:00 2001 From: TellowKrinkle Date: Sun, 20 Mar 2022 21:03:20 -0500 Subject: [PATCH] GS: Fix inverted DSB check --- pcsx2/GS/Renderers/HW/GSRendererNew.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pcsx2/GS/Renderers/HW/GSRendererNew.cpp b/pcsx2/GS/Renderers/HW/GSRendererNew.cpp index 67acdbc5c9..b4bd36d914 100644 --- a/pcsx2/GS/Renderers/HW/GSRendererNew.cpp +++ b/pcsx2/GS/Renderers/HW/GSRendererNew.cpp @@ -1017,7 +1017,7 @@ void GSRendererNew::EmulateBlending(bool& DATE_PRIMID, bool& DATE_BARRIER, bool& // Remove second color output when unused. Works around bugs in some drivers (e.g. Intel). m_conf.ps.no_color1 |= !GSDevice::IsDualSourceBlendFactor(m_conf.blend.src_factor) && - GSDevice::IsDualSourceBlendFactor(m_conf.blend.dst_factor); + !GSDevice::IsDualSourceBlendFactor(m_conf.blend.dst_factor); } // DATE_PRIMID interact very badly with sw blending. DATE_PRIMID uses the primitiveID to find the primitive