summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/seicross.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/seicross.c')
-rw-r--r--src/mame/video/seicross.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/mame/video/seicross.c b/src/mame/video/seicross.c
index 2a3745d824d..e0c9086c0d1 100644
--- a/src/mame/video/seicross.c
+++ b/src/mame/video/seicross.c
@@ -134,15 +134,14 @@ static void draw_sprites(running_machine &machine, bitmap_ind16 &bitmap, const r
}
}
-SCREEN_UPDATE_IND16( seicross )
+UINT32 seicross_state::screen_update_seicross(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect)
{
- seicross_state *state = screen.machine().driver_data<seicross_state>();
int col;
for (col = 0; col < 32; col++)
- state->m_bg_tilemap->set_scrolly(col, state->m_row_scroll[col]);
+ m_bg_tilemap->set_scrolly(col, m_row_scroll[col]);
- state->m_bg_tilemap->draw(bitmap, cliprect, 0, 0);
+ m_bg_tilemap->draw(bitmap, cliprect, 0, 0);
draw_sprites(screen.machine(), bitmap, cliprect);
return 0;
}