GSdx-hw TC: fix Target::Inside check

- inclusion shall not be strict only on start side
This commit is contained in:
Alessandro Vetere 2019-08-05 20:44:19 +02:00 committed by lightningterror
parent 2007894ba6
commit 68cfc5d953
1 changed files with 1 additions and 1 deletions

View File

@ -1925,7 +1925,7 @@ bool GSTextureCache::Target::Inside(uint32 bp, uint32 bw, uint32 psm, const GSVe
{
uint32 block = GSLocalMemory::m_psm[psm].bn(rect.z - 1, rect.w - 1, bp, bw); // Valid only for color formats
return bp > m_TEX0.TBP0 && block <= m_end_block;
return bp >= m_TEX0.TBP0 && block <= m_end_block;
}
// GSTextureCache::SourceMap