mirror of https://github.com/snes9xgit/snes9x.git
Don't break double-height modes.
This commit is contained in:
parent
1bf9ca8fa0
commit
ada43c7992
5
ppu.cpp
5
ppu.cpp
|
@ -1066,7 +1066,10 @@ void S9xSetPPU (uint8 Byte, uint16 Address)
|
|||
else
|
||||
{
|
||||
PPU.ScreenHeight = SNES_HEIGHT;
|
||||
IPPU.RenderedScreenHeight = PPU.ScreenHeight;
|
||||
if (IPPU.DoubleHeightPixels)
|
||||
IPPU.RenderedScreenHeight = PPU.ScreenHeight << 1;
|
||||
else
|
||||
IPPU.RenderedScreenHeight = PPU.ScreenHeight;
|
||||
}
|
||||
|
||||
if ((Memory.FillRAM[0x2133] ^ Byte) & 3)
|
||||
|
|
Loading…
Reference in New Issue