mirror of
https://github.com/holub/mame
synced 2025-04-24 17:30:55 +03:00
nw
This commit is contained in:
parent
36558265ad
commit
0dc460c40e
@ -117,7 +117,10 @@ WRITE8_MEMBER(leland_state::leland_scroll_w)
|
||||
|
||||
WRITE8_MEMBER(leland_state::leland_gfx_port_w)
|
||||
{
|
||||
m_screen->update_partial(m_screen->vpos());
|
||||
int scanline = m_screen->vpos();
|
||||
if (scanline > 0)
|
||||
m_screen->update_partial(scanline - 1);
|
||||
|
||||
m_gfxbank = data;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user