summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/solomon.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/solomon.c')
-rw-r--r--src/mame/video/solomon.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/mame/video/solomon.c b/src/mame/video/solomon.c
index 2197ff3b137..5e973ea7470 100644
--- a/src/mame/video/solomon.c
+++ b/src/mame/video/solomon.c
@@ -100,11 +100,10 @@ static void draw_sprites(running_machine &machine, bitmap_ind16 &bitmap, const r
}
}
-SCREEN_UPDATE_IND16( solomon )
+UINT32 solomon_state::screen_update_solomon(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect)
{
- solomon_state *state = screen.machine().driver_data<solomon_state>();
- state->m_bg_tilemap->draw(bitmap, cliprect, 0, 0);
- state->m_fg_tilemap->draw(bitmap, cliprect, 0, 0);
+ m_bg_tilemap->draw(bitmap, cliprect, 0, 0);
+ m_fg_tilemap->draw(bitmap, cliprect, 0, 0);
draw_sprites(screen.machine(), bitmap, cliprect);
return 0;
}