summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/cheekyms.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/cheekyms.cpp')
-rw-r--r--src/mame/video/cheekyms.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/video/cheekyms.cpp b/src/mame/video/cheekyms.cpp
index 8930b3cb2e0..4d984f15a87 100644
--- a/src/mame/video/cheekyms.cpp
+++ b/src/mame/video/cheekyms.cpp
@@ -105,7 +105,7 @@ void cheekyms_state::video_start()
height = m_screen->height();
m_bitmap_buffer = std::make_unique<bitmap_ind16>(width, height);
- m_cm_tilemap = &machine().tilemap().create(*m_gfxdecode, tilemap_get_info_delegate(FUNC(cheekyms_state::get_tile_info),this), TILEMAP_SCAN_ROWS, 8, 8, 32, 32);
+ m_cm_tilemap = &machine().tilemap().create(*m_gfxdecode, tilemap_get_info_delegate(*this, FUNC(cheekyms_state::get_tile_info)), TILEMAP_SCAN_ROWS, 8, 8, 32, 32);
m_cm_tilemap->set_transparent_pen(0);
}