-snes: Back out erroneous change from machine/snes.cpp, it fixes the text box being off by one line in smrpg, but more fundamentally breaks other things, nw

This commit is contained in:
mooglyguy 2020-03-15 18:13:17 +01:00
parent 50a33541d3
commit e5da9cd72f

View File

@ -228,7 +228,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());
m_screen->update_partial((m_ppu->interlace() == 2) ? (m_ppu->current_vert() * m_ppu->interlace()) : m_ppu->current_vert() - 1);
}
// signal hblank