summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author mooglyguy <therealmogminer@gmail.com>2020-03-15 18:13:17 +0100
committer mooglyguy <therealmogminer@gmail.com>2020-03-15 18:14:04 +0100
commite5da9cd72fcb9f0a29a6d5754d1ed89048ab7d2b (patch)
tree08156b922306bbd1dbc0ae505427e29452556776
parent50a33541d3bdb9a18ca475ba76fcd14583a5d9eb (diff)
-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
-rw-r--r--src/mame/machine/snes.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/machine/snes.cpp b/src/mame/machine/snes.cpp
index 4adf17220b8..a0f4281ef4d 100644
--- a/src/mame/machine/snes.cpp
+++ b/src/mame/machine/snes.cpp
@@ -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