mirror of
https://github.com/holub/mame
synced 2025-04-24 17:30:55 +03:00
-snes: Fixed off-by-one-line graphical glitches in some games, nw
This commit is contained in:
parent
c9fa5d187c
commit
620ba04ce1
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user