uhhh did i leave this hacked when i fixed re-un-broke cv3 recently?

This commit is contained in:
zeromus 2018-04-11 00:17:30 -05:00
parent 7c5395e10b
commit bb5cd1527d
1 changed files with 5 additions and 6 deletions

View File

@ -252,12 +252,11 @@ uint8 FASTCALL mmc5_PPURead(uint32 A)
{
if((A&0x3FF)>=0x3C0)
{
return ExRAM[NTRefreshAddr & 0x3ff];
//uint8 byte = ExRAM[NTRefreshAddr & 0x3ff];
////get attribute part and paste it 4x across the byte
//byte >>= 6;
//byte *= 0x55;
//return byte;
uint8 byte = ExRAM[NTRefreshAddr & 0x3ff];
//get attribute part and paste it 4x across the byte
byte >>= 6;
byte *= 0x55;
return byte;
}
}