mirror of https://github.com/PCSX2/pcsx2.git
GS/HW: Check if pabe sw is actually enabled for ate second pass.
No need to check for PABE if it's not enabled on sw blend. In fact on ICO flag is enabled even if ABE is disabled which is pointless.
This commit is contained in:
parent
e3c988aa8b
commit
9bcbf43695
|
@ -6490,7 +6490,7 @@ __ri void GSRendererHW::DrawPrims(GSTextureCache::Target* rt, GSTextureCache::Ta
|
|||
|
||||
if (ate_second_pass)
|
||||
{
|
||||
pxAssert(!env.PABE.PABE);
|
||||
pxAssert(!m_conf.ps.pabe);
|
||||
|
||||
std::memcpy(&m_conf.alpha_second_pass.ps, &m_conf.ps, sizeof(m_conf.ps));
|
||||
std::memcpy(&m_conf.alpha_second_pass.colormask, &m_conf.colormask, sizeof(m_conf.colormask));
|
||||
|
|
Loading…
Reference in New Issue