GS/HW: Don't convert old depth if being overwritten

This commit is contained in:
refractionpcsx2 2023-11-09 11:17:06 +00:00
parent a3eb1655c6
commit fa5aedc906
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}