summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/shuuz.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/shuuz.c')
-rw-r--r--src/mame/video/shuuz.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/mame/video/shuuz.c b/src/mame/video/shuuz.c
index c635a8ea579..59714d1d911 100644
--- a/src/mame/video/shuuz.c
+++ b/src/mame/video/shuuz.c
@@ -87,15 +87,14 @@ VIDEO_START_MEMBER(shuuz_state,shuuz)
*
*************************************/
-SCREEN_UPDATE_IND16( shuuz )
+UINT32 shuuz_state::screen_update_shuuz(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect)
{
- shuuz_state *state = screen.machine().driver_data<shuuz_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);