Duplicate condition fix.

Thanks j4ck.fr0st
This commit is contained in:
Lioncash
2013-01-25 21:30:29 -05:00
parent 1e006b5b99
commit efe8c75424
2 changed files with 3 additions and 5 deletions

View File

@ -519,9 +519,8 @@ void BPWritten(const BPCmd& bp)
for (u32 i = 0; i < tmem_cfg.preload_tile_info.count; ++i)
{
// FIXME: Duplicate conditions.
if (tmem_addr_even + TMEM_LINE_SIZE > TMEM_SIZE ||
tmem_addr_even + TMEM_LINE_SIZE > TMEM_SIZE)
tmem_addr_odd + TMEM_LINE_SIZE > TMEM_SIZE)
break;
memcpy(texMem + tmem_addr_even, src_ptr, TMEM_LINE_SIZE);