Fix SW1-JPB random texture corruption problem and video choppiness.

This commit is contained in:
Flyinghead 2018-06-07 17:19:49 +02:00
parent b9fe9332cf
commit e1a86b4e0a
1 changed files with 4 additions and 1 deletions

View File

@ -71,8 +71,11 @@ void pvr_WriteReg(u32 paddr,u32 data)
return;
}
if (addr == TA_YUV_TEX_BASE_addr)
if (addr == TA_YUV_TEX_BASE_addr) {
PvrReg(addr, u32) = data;
YUV_init();
return;
}
if (addr>=PALETTE_RAM_START_addr)
{