summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/funybubl.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/funybubl.cpp')
-rw-r--r--src/mame/video/funybubl.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/video/funybubl.cpp b/src/mame/video/funybubl.cpp
index 1e9103156b2..f2116510cea 100644
--- a/src/mame/video/funybubl.cpp
+++ b/src/mame/video/funybubl.cpp
@@ -29,7 +29,7 @@ TILE_GET_INFO_MEMBER(funybubl_state::get_tile_info)
void funybubl_state::video_start()
{
- m_tilemap = &machine().tilemap().create(*m_gfxdecode, tilemap_get_info_delegate(FUNC(funybubl_state::get_tile_info),this),TILEMAP_SCAN_ROWS, 8, 8, 64, 32);
+ m_tilemap = &machine().tilemap().create(*m_gfxdecode, tilemap_get_info_delegate(*this, FUNC(funybubl_state::get_tile_info)),TILEMAP_SCAN_ROWS, 8, 8, 64, 32);
m_tilemap->set_transparent_pen(0);
}