Darn, invalidate the dest not the src.

This commit is contained in:
Unknown W. Brackets 2012-12-21 14:21:23 -08:00
parent 6a9a183dd3
commit 18fe1d4b19

View File

@ -1294,7 +1294,7 @@ void GLES_GPU::DoBlockTransfer()
// TODO: Notify all overlapping textures that it's time to die/reload.
TextureCache_Invalidate(srcBasePtr + srcY * srcStride + srcX, height * srcStride + width * bpp);
TextureCache_Invalidate(dstBasePtr + dstY * dstStride + dstX, height * dstStride + width * bpp);
}
void GLES_GPU::InvalidateCache(u32 addr, int size)