summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/mappy.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/mappy.cpp')
-rw-r--r--src/mame/video/mappy.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/video/mappy.cpp b/src/mame/video/mappy.cpp
index 95883e83f22..fafc84915ad 100644
--- a/src/mame/video/mappy.cpp
+++ b/src/mame/video/mappy.cpp
@@ -308,7 +308,7 @@ TILE_GET_INFO_MEMBER(mappy_state::mappy_get_tile_info)
***************************************************************************/
-void mappy_state::video_start_superpac()
+VIDEO_START_MEMBER(mappy_state,superpac)
{
m_bg_tilemap = &machine().tilemap().create(*m_gfxdecode, tilemap_get_info_delegate(FUNC(mappy_state::superpac_get_tile_info),this),tilemap_mapper_delegate(FUNC(mappy_state::superpac_tilemap_scan),this),8,8,36,28);
m_screen->register_screen_bitmap(m_sprite_bitmap);
@@ -316,14 +316,14 @@ void mappy_state::video_start_superpac()
m_bg_tilemap->configure_groups(*m_gfxdecode->gfx(0), 31);
}
-void mappy_state::video_start_phozon()
+VIDEO_START_MEMBER(mappy_state,phozon)
{
m_bg_tilemap = &machine().tilemap().create(*m_gfxdecode, tilemap_get_info_delegate(FUNC(mappy_state::phozon_get_tile_info),this),tilemap_mapper_delegate(FUNC(mappy_state::superpac_tilemap_scan),this),8,8,36,28);
m_bg_tilemap->configure_groups(*m_gfxdecode->gfx(0), 15);
}
-void mappy_state::video_start_mappy()
+VIDEO_START_MEMBER(mappy_state,mappy)
{
m_bg_tilemap = &machine().tilemap().create(*m_gfxdecode, tilemap_get_info_delegate(FUNC(mappy_state::mappy_get_tile_info),this),tilemap_mapper_delegate(FUNC(mappy_state::mappy_tilemap_scan),this),8,8,36,60);