summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/galaxia.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/galaxia.cpp')
-rw-r--r--src/mame/video/galaxia.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/video/galaxia.cpp b/src/mame/video/galaxia.cpp
index bbb46547e2b..e156580afb2 100644
--- a/src/mame/video/galaxia.cpp
+++ b/src/mame/video/galaxia.cpp
@@ -87,7 +87,7 @@ VIDEO_START_MEMBER(galaxia_state,galaxia)
{
init_common();
- m_bg_tilemap = &machine().tilemap().create(*m_gfxdecode, tilemap_get_info_delegate(FUNC(galaxia_state::get_galaxia_bg_tile_info),this), TILEMAP_SCAN_ROWS, 8, 8, 32, 32);
+ m_bg_tilemap = &machine().tilemap().create(*m_gfxdecode, tilemap_get_info_delegate(*this, FUNC(galaxia_state::get_galaxia_bg_tile_info)), TILEMAP_SCAN_ROWS, 8, 8, 32, 32);
m_bg_tilemap->set_transparent_pen(0);
m_bg_tilemap->set_scroll_cols(8);
@@ -97,7 +97,7 @@ VIDEO_START_MEMBER(galaxia_state,astrowar)
{
init_common();
- m_bg_tilemap = &machine().tilemap().create(*m_gfxdecode, tilemap_get_info_delegate(FUNC(galaxia_state::get_astrowar_bg_tile_info),this), TILEMAP_SCAN_ROWS, 8, 8, 32, 32);
+ m_bg_tilemap = &machine().tilemap().create(*m_gfxdecode, tilemap_get_info_delegate(*this, FUNC(galaxia_state::get_astrowar_bg_tile_info)), TILEMAP_SCAN_ROWS, 8, 8, 32, 32);
m_bg_tilemap->set_transparent_pen(0);
m_bg_tilemap->set_scroll_cols(8);
m_bg_tilemap->set_scrolldx(8, 8);