summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/f1gp.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/f1gp.cpp')
-rw-r--r--src/mame/video/f1gp.cpp8
1 files changed, 3 insertions, 5 deletions
diff --git a/src/mame/video/f1gp.cpp b/src/mame/video/f1gp.cpp
index a28a6f12874..f1860266a33 100644
--- a/src/mame/video/f1gp.cpp
+++ b/src/mame/video/f1gp.cpp
@@ -44,9 +44,7 @@ TILE_GET_INFO_MEMBER(f1gp_state::get_fg_tile_info)
***************************************************************************/
-
-
-VIDEO_START_MEMBER(f1gp_state,f1gp)
+void f1gp_state::video_start_f1gp()
{
m_roz_tilemap = &machine().tilemap().create(*m_gfxdecode, tilemap_get_info_delegate(FUNC(f1gp_state::f1gp_get_roz_tile_info),this), TILEMAP_SCAN_ROWS, 16, 16, 64, 64);
m_fg_tilemap = &machine().tilemap().create(*m_gfxdecode, tilemap_get_info_delegate(FUNC(f1gp_state::get_fg_tile_info),this), TILEMAP_SCAN_ROWS, 8, 8, 64, 32);
@@ -60,7 +58,7 @@ VIDEO_START_MEMBER(f1gp_state,f1gp)
}
-VIDEO_START_MEMBER(f1gp_state,f1gpb)
+void f1gp_state::video_start_f1gpb()
{
m_roz_tilemap = &machine().tilemap().create(*m_gfxdecode, tilemap_get_info_delegate(FUNC(f1gp_state::f1gp_get_roz_tile_info),this), TILEMAP_SCAN_ROWS, 16, 16, 64, 64);
m_fg_tilemap = &machine().tilemap().create(*m_gfxdecode, tilemap_get_info_delegate(FUNC(f1gp_state::get_fg_tile_info),this), TILEMAP_SCAN_ROWS, 8, 8, 64, 32);
@@ -92,7 +90,7 @@ uint32_t f1gp_state::f1gp_ol2_tile_callback( uint32_t code )
-VIDEO_START_MEMBER(f1gp_state,f1gp2)
+void f1gp_state::video_start_f1gp2()
{
m_roz_tilemap = &machine().tilemap().create(*m_gfxdecode, tilemap_get_info_delegate(FUNC(f1gp_state::f1gp2_get_roz_tile_info),this), TILEMAP_SCAN_ROWS, 16, 16, 64, 64);
m_fg_tilemap = &machine().tilemap().create(*m_gfxdecode, tilemap_get_info_delegate(FUNC(f1gp_state::get_fg_tile_info),this), TILEMAP_SCAN_ROWS, 8, 8, 64, 32);