summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/snes.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/snes.cpp')
-rw-r--r--src/mame/machine/snes.cpp11
1 files changed, 2 insertions, 9 deletions
diff --git a/src/mame/machine/snes.cpp b/src/mame/machine/snes.cpp
index 419cb007816..a0f4281ef4d 100644
--- a/src/mame/machine/snes.cpp
+++ b/src/mame/machine/snes.cpp
@@ -102,15 +102,8 @@ TIMER_CALLBACK_MEMBER(snes_state::snes_hirq_tick_callback)
TIMER_CALLBACK_MEMBER(snes_state::snes_reset_oam_address)
{
- // make sure we're in the 65816's context since we're messing with the OAM and stuff
- address_space &space = m_maincpu->space(AS_PROGRAM);
-
if (!m_ppu->screen_disabled()) //Reset OAM address, byuu says it happens at H=10
- {
- space.write_byte(OAMADDL, m_ppu->saved_oam_address_low()); /* Reset oam address */
- space.write_byte(OAMADDH, m_ppu->saved_oam_address_high());
- m_ppu->set_first_sprite();
- }
+ m_ppu->oam_address_reset();
}
TIMER_CALLBACK_MEMBER(snes_state::snes_reset_hdma)
@@ -235,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