summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/funworld.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/funworld.c')
-rw-r--r--src/mame/video/funworld.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/mame/video/funworld.c b/src/mame/video/funworld.c
index 56f46a712cb..b3eb43f5750 100644
--- a/src/mame/video/funworld.c
+++ b/src/mame/video/funworld.c
@@ -191,9 +191,8 @@ VIDEO_START_MEMBER(funworld_state,magicrd2)
}
-SCREEN_UPDATE_IND16(funworld)
+UINT32 funworld_state::screen_update_funworld(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect)
{
- funworld_state *state = screen.machine().driver_data<funworld_state>();
- state->m_bg_tilemap->draw(bitmap, cliprect, 0, 0);
+ m_bg_tilemap->draw(bitmap, cliprect, 0, 0);
return 0;
}