mirror of https://github.com/PCSX2/pcsx2.git
GS/HW: Don't convert old depth if being overwritten
This commit is contained in:
parent
a3eb1655c6
commit
fa5aedc906
|
@ -1920,7 +1920,7 @@ GSTextureCache::Target* GSTextureCache::LookupTarget(GIFRegTEX0 TEX0, const GSVe
|
|||
dst_match = t;
|
||||
break;
|
||||
}
|
||||
else if (t->m_age == 1)
|
||||
else if (t->m_age == 1 && (preserve_rgb || (preserve_alpha && (dst_match->m_valid_alpha_low || dst_match->m_valid_alpha_high))))
|
||||
{
|
||||
dst_match = t;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue