summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/circus.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/circus.cpp')
-rw-r--r--src/mame/video/circus.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/video/circus.cpp b/src/mame/video/circus.cpp
index c160672f142..3708e1b964a 100644
--- a/src/mame/video/circus.cpp
+++ b/src/mame/video/circus.cpp
@@ -38,7 +38,7 @@ TILE_GET_INFO_MEMBER(circus_state::get_bg_tile_info)
void circus_state::video_start()
{
- m_bg_tilemap = &machine().tilemap().create(*m_gfxdecode, tilemap_get_info_delegate(FUNC(circus_state::get_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(circus_state::get_bg_tile_info)), TILEMAP_SCAN_ROWS, 8, 8, 32, 32);
}
void circus_state::draw_line( bitmap_ind16 &bitmap, const rectangle &cliprect, int x1, int y1, int x2, int y2, int dotted )