diff options
Diffstat (limited to 'src/mame/video/rpunch.cpp')
-rw-r--r-- | src/mame/video/rpunch.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/video/rpunch.cpp b/src/mame/video/rpunch.cpp index e52a0516db8..28b829bd959 100644 --- a/src/mame/video/rpunch.cpp +++ b/src/mame/video/rpunch.cpp @@ -71,8 +71,8 @@ VIDEO_START_MEMBER(rpunch_state,rpunch) m_sprite_xoffs = 0; /* allocate tilemaps for the backgrounds */ - m_background[0] = &machine().tilemap().create(*m_gfxdecode, tilemap_get_info_delegate(FUNC(rpunch_state::get_bg0_tile_info),this),TILEMAP_SCAN_COLS,8,8,64,64); - m_background[1] = &machine().tilemap().create(*m_gfxdecode, tilemap_get_info_delegate(FUNC(rpunch_state::get_bg1_tile_info),this),TILEMAP_SCAN_COLS,8,8,64,64); + m_background[0] = &machine().tilemap().create(*m_gfxdecode, tilemap_get_info_delegate(*this, FUNC(rpunch_state::get_bg0_tile_info)), TILEMAP_SCAN_COLS, 8, 8, 64, 64); + m_background[1] = &machine().tilemap().create(*m_gfxdecode, tilemap_get_info_delegate(*this, FUNC(rpunch_state::get_bg1_tile_info)), TILEMAP_SCAN_COLS, 8, 8, 64, 64); /* configure the tilemaps */ m_background[1]->set_transparent_pen(15); |