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, 5 insertions, 3 deletions
diff --git a/src/mame/video/f1gp.cpp b/src/mame/video/f1gp.cpp
index f1860266a33..a28a6f12874 100644
--- a/src/mame/video/f1gp.cpp
+++ b/src/mame/video/f1gp.cpp
@@ -44,7 +44,9 @@ TILE_GET_INFO_MEMBER(f1gp_state::get_fg_tile_info)
***************************************************************************/
-void f1gp_state::video_start_f1gp()
+
+
+VIDEO_START_MEMBER(f1gp_state,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);
@@ -58,7 +60,7 @@ void f1gp_state::video_start_f1gp()
}
-void f1gp_state::video_start_f1gpb()
+VIDEO_START_MEMBER(f1gp_state,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);
@@ -90,7 +92,7 @@ uint32_t f1gp_state::f1gp_ol2_tile_callback( uint32_t code )
-void f1gp_state::video_start_f1gp2()
+VIDEO_START_MEMBER(f1gp_state,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);