summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/compgolf.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/compgolf.cpp')
-rw-r--r--src/mame/video/compgolf.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/video/compgolf.cpp b/src/mame/video/compgolf.cpp
index 5d5a026d44c..aca51e9f67e 100644
--- a/src/mame/video/compgolf.cpp
+++ b/src/mame/video/compgolf.cpp
@@ -70,8 +70,8 @@ TILE_GET_INFO_MEMBER(compgolf_state::get_back_info)
void compgolf_state::video_start()
{
- m_bg_tilemap = &machine().tilemap().create(*m_gfxdecode, tilemap_get_info_delegate(FUNC(compgolf_state::get_back_info),this), tilemap_mapper_delegate(FUNC(compgolf_state::back_scan),this), 16, 16, 32, 32);
- m_text_tilemap = &machine().tilemap().create(*m_gfxdecode, tilemap_get_info_delegate(FUNC(compgolf_state::get_text_info),this), TILEMAP_SCAN_ROWS, 8, 8, 32, 32);
+ m_bg_tilemap = &machine().tilemap().create(*m_gfxdecode, tilemap_get_info_delegate(*this, FUNC(compgolf_state::get_back_info)), tilemap_mapper_delegate(*this, FUNC(compgolf_state::back_scan)), 16, 16, 32, 32);
+ m_text_tilemap = &machine().tilemap().create(*m_gfxdecode, tilemap_get_info_delegate(*this, FUNC(compgolf_state::get_text_info)), TILEMAP_SCAN_ROWS, 8, 8, 32, 32);
m_text_tilemap->set_transparent_pen(0);
}