summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/meadows.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/meadows.c')
-rw-r--r--src/mame/video/meadows.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/mame/video/meadows.c b/src/mame/video/meadows.c
index 4c261dfcce3..b39785337bb 100644
--- a/src/mame/video/meadows.c
+++ b/src/mame/video/meadows.c
@@ -101,11 +101,10 @@ static void draw_sprites(running_machine &machine, bitmap_ind16 &bitmap, const r
*
*************************************/
-SCREEN_UPDATE_IND16( meadows )
+UINT32 meadows_state::screen_update_meadows(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect)
{
- meadows_state *state = screen.machine().driver_data<meadows_state>();
/* draw the background */
- state->m_bg_tilemap->draw(bitmap, cliprect, 0, 0);
+ m_bg_tilemap->draw(bitmap, cliprect, 0, 0);
/* draw the sprites */
if (screen.machine().gfx[1])