summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/lvcards.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/lvcards.c')
-rw-r--r--src/mame/video/lvcards.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/mame/video/lvcards.c b/src/mame/video/lvcards.c
index be4eb04c730..fa51eba9b70 100644
--- a/src/mame/video/lvcards.c
+++ b/src/mame/video/lvcards.c
@@ -110,9 +110,8 @@ void lvcards_state::video_start()
8, 8, 32, 32);
}
-SCREEN_UPDATE_IND16( lvcards )
+UINT32 lvcards_state::screen_update_lvcards(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect)
{
- lvcards_state *state = screen.machine().driver_data<lvcards_state>();
- state->m_bg_tilemap->draw(bitmap, cliprect, 0, 0);
+ m_bg_tilemap->draw(bitmap, cliprect, 0, 0);
return 0;
}
span> * Streamline machine configuration macros - everyone's a device edition. Vas Crabb2018-05-061-2/+2 * Address maps macros removal, pass 1 [O. Galibert] Olivier Galibert2018-03-141-3/+4 * API change: Memory maps are now methods of the owner class [O. Galibert] Olivier Galibert2018-02-121-1/+2