summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/nova2001.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/nova2001.cpp')
-rw-r--r--src/mame/video/nova2001.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/video/nova2001.cpp b/src/mame/video/nova2001.cpp
index 3ee7d318473..c39c7db04e8 100644
--- a/src/mame/video/nova2001.cpp
+++ b/src/mame/video/nova2001.cpp
@@ -164,7 +164,7 @@ TILE_GET_INFO_MEMBER(nova2001_state::raiders5_get_fg_tile_info)
*
*************************************/
-void nova2001_state::video_start_nova2001()
+VIDEO_START_MEMBER(nova2001_state,nova2001)
{
m_bg_tilemap = &machine().tilemap().create(*m_gfxdecode, tilemap_get_info_delegate(FUNC(nova2001_state::nova2001_get_bg_tile_info),this), TILEMAP_SCAN_ROWS, 8, 8, 32, 32);
m_fg_tilemap = &machine().tilemap().create(*m_gfxdecode, tilemap_get_info_delegate(FUNC(nova2001_state::nova2001_get_fg_tile_info),this), TILEMAP_SCAN_ROWS, 8, 8, 32, 32);
@@ -172,13 +172,13 @@ void nova2001_state::video_start_nova2001()
m_bg_tilemap->set_scrolldx(0, -7);
}
-void nova2001_state::video_start_pkunwar()
+VIDEO_START_MEMBER(nova2001_state,pkunwar)
{
m_bg_tilemap = &machine().tilemap().create(*m_gfxdecode, tilemap_get_info_delegate(FUNC(nova2001_state::pkunwar_get_bg_tile_info),this), TILEMAP_SCAN_ROWS, 8, 8, 32, 32);
m_bg_tilemap->set_transparent_pen(0);
}
-void nova2001_state::video_start_ninjakun()
+VIDEO_START_MEMBER(nova2001_state,ninjakun)
{
m_bg_tilemap = &machine().tilemap().create(*m_gfxdecode, tilemap_get_info_delegate(FUNC(nova2001_state::ninjakun_get_bg_tile_info),this), TILEMAP_SCAN_ROWS, 8, 8, 32, 32);
m_fg_tilemap = &machine().tilemap().create(*m_gfxdecode, tilemap_get_info_delegate(FUNC(nova2001_state::ninjakun_get_fg_tile_info),this), TILEMAP_SCAN_ROWS, 8, 8, 32, 32);
@@ -186,7 +186,7 @@ void nova2001_state::video_start_ninjakun()
m_bg_tilemap->set_scrolldx(7, 0);
}
-void nova2001_state::video_start_raiders5()
+VIDEO_START_MEMBER(nova2001_state,raiders5)
{
m_bg_tilemap = &machine().tilemap().create(*m_gfxdecode, tilemap_get_info_delegate(FUNC(nova2001_state::raiders5_get_bg_tile_info),this), TILEMAP_SCAN_ROWS, 8, 8, 32, 32);
m_fg_tilemap = &machine().tilemap().create(*m_gfxdecode, tilemap_get_info_delegate(FUNC(nova2001_state::raiders5_get_fg_tile_info),this), TILEMAP_SCAN_ROWS, 8, 8, 32, 32);