ppu background rendering is working as intended

This commit is contained in:
Lauchmelder 2022-03-06 15:41:46 +01:00
parent ca3eac8393
commit 6fe829d66c
No known key found for this signature in database
GPG key ID: C2403C69D78F011D

View file

@ -404,6 +404,13 @@ void PPU::PerformRenderAction()
loTile.Lo = patternTableLo;
hiTile.Lo = patternTableHi;
Byte attributeHalfNybble = attributeTableByte;
attributeHalfNybble >>= (((current.CoarseX >> 1) % 2) ? 2 : 0);
attributeHalfNybble >>= (((current.CoarseY >> 1) % 2) ? 4 : 0);
loAttribute.Lo = ((attributeHalfNybble & 1) ? 0xFF : 0x00);
hiAttribute.Lo = ((attributeHalfNybble & 2) ? 0xFF : 0x00);
current.CoarseX++;
if (x == 256)
{
@ -426,13 +433,6 @@ void PPU::PerformRenderAction()
}
}
Byte attributeHalfNybble = attributeTableByte;
attributeHalfNybble >>= ((current.CoarseX % 2) ? 2 : 0);
attributeHalfNybble >>= ((current.CoarseY % 2) ? 0 : 4);
loAttribute.Lo = ((attributeHalfNybble & 1) ? 0xFF : 0x00);
hiAttribute.Lo = ((attributeHalfNybble & 2) ? 0xFF : 0x00);
fetchPhase = FetchingPhase::NametableByte;
break;
}