mirror of https://github.com/PCSX2/pcsx2.git
GS-TC: Don't Tex in RT on old targets/PCRTC only frames.
This commit is contained in:
parent
3586a12c46
commit
e31387b8bc
|
@ -350,7 +350,7 @@ GSTextureCache::Source* GSTextureCache::LookupSource(const GIFRegTEX0& TEX0, con
|
|||
break;
|
||||
}
|
||||
else if (GSConfig.UserHacks_TextureInsideRt && psm == PSM_PSMCT32 && t->m_TEX0.PSM == psm &&
|
||||
((t->m_TEX0.TBP0 < bp && t->m_end_block >= bp) || t_wraps))
|
||||
((t->m_TEX0.TBP0 < bp && t->m_end_block >= bp) || t_wraps) && t->m_age < 1)
|
||||
{
|
||||
// Only PSMCT32 to limit false hits.
|
||||
// PSM equality needed because CreateSource does not handle PSM conversion.
|
||||
|
|
Loading…
Reference in New Issue