Also allow interlacing in Mode 7.

This commit is contained in:
Brandon Wright 2018-06-26 03:46:39 -05:00
parent ff1925cc0a
commit 6f00d63116
1 changed files with 1 additions and 1 deletions

View File

@ -546,7 +546,7 @@ void S9xSetPPU (uint8 Byte, uint16 Address)
PPU.BGMode = Byte & 7;
// BJ: BG3Priority only takes effect if BGMode == 1 and the bit is set
PPU.BG3Priority = ((Byte & 0x0f) == 0x09);
if (PPU.BGMode == 6 || PPU.BGMode == 5)
if (PPU.BGMode == 6 || PPU.BGMode == 5 || PPU.BGMode == 7)
IPPU.Interlace = Memory.FillRAM[0x2133] & 1;
else
IPPU.Interlace = 0;