PPU: Fixed Dendy issue with intensify & grayscale bits
This commit is contained in:
parent
d44b690464
commit
c79c1ffdec
1 changed files with 1 additions and 1 deletions
|
@ -746,7 +746,7 @@ void PPU::DrawPixel()
|
|||
|
||||
void PPU::UpdateGrayscaleAndIntensifyBits()
|
||||
{
|
||||
if(_scanline < 0 || _scanline > 241) {
|
||||
if(_scanline < 0 || _scanline > _nmiScanline) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue