summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/badlands.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/badlands.c')
-rw-r--r--src/mame/video/badlands.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/mame/video/badlands.c b/src/mame/video/badlands.c
index 6edfa50e3d2..8e77c255eb4 100644
--- a/src/mame/video/badlands.c
+++ b/src/mame/video/badlands.c
@@ -109,15 +109,14 @@ WRITE16_HANDLER( badlands_pf_bank_w )
*
*************************************/
-SCREEN_UPDATE_IND16( badlands )
+UINT32 badlands_state::screen_update_badlands(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect)
{
- badlands_state *state = screen.machine().driver_data<badlands_state>();
atarimo_rect_list rectlist;
bitmap_ind16 *mobitmap;
int x, y, r;
/* draw the playfield */
- state->m_playfield_tilemap->draw(bitmap, cliprect, 0, 0);
+ m_playfield_tilemap->draw(bitmap, cliprect, 0, 0);
/* draw and merge the MO */
mobitmap = atarimo_render(0, cliprect, &rectlist);