-snes: Fixed off-by-one-line graphical glitches in some games, nw

This commit is contained in:
MooglyGuy 2019-11-03 15:48:09 +01:00
parent c9fa5d187c
commit 620ba04ce1

View File

@ -235,7 +235,7 @@ TIMER_CALLBACK_MEMBER(snes_state::snes_hblank_tick)
hdma(cpu0space);
if (m_screen->vpos() > 0)
m_screen->update_partial((m_ppu->interlace() == 2) ? (m_ppu->current_vert() * m_ppu->interlace()) : m_ppu->current_vert() - 1);
m_screen->update_partial((m_ppu->interlace() == 2) ? (m_ppu->current_vert() * m_ppu->interlace()) : m_ppu->current_vert());
}
// signal hblank