summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/bagman.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/bagman.cpp')
-rw-r--r--src/mame/video/bagman.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/video/bagman.cpp b/src/mame/video/bagman.cpp
index 6d65bc6ea9c..ec93795a4bc 100644
--- a/src/mame/video/bagman.cpp
+++ b/src/mame/video/bagman.cpp
@@ -107,7 +107,7 @@ TILE_GET_INFO_MEMBER(bagman_state::get_bg_tile_info)
void bagman_state::video_start()
{
- m_bg_tilemap = &machine().tilemap().create(*m_gfxdecode, tilemap_get_info_delegate(FUNC(bagman_state::get_bg_tile_info),this), TILEMAP_SCAN_ROWS,
+ m_bg_tilemap = &machine().tilemap().create(*m_gfxdecode, tilemap_get_info_delegate(*this, FUNC(bagman_state::get_bg_tile_info)), TILEMAP_SCAN_ROWS,
8, 8, 32, 32);
}