summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/shootout.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/shootout.cpp')
-rw-r--r--src/mame/video/shootout.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/video/shootout.cpp b/src/mame/video/shootout.cpp
index a97ea52df94..47c0db18368 100644
--- a/src/mame/video/shootout.cpp
+++ b/src/mame/video/shootout.cpp
@@ -78,9 +78,9 @@ WRITE8_MEMBER(shootout_state::textram_w)
void shootout_state::video_start()
{
- m_background = &machine().tilemap().create(*m_gfxdecode, tilemap_get_info_delegate(FUNC(shootout_state::get_bg_tile_info),this), TILEMAP_SCAN_ROWS, 8, 8, 32, 32);
- m_foreground = &machine().tilemap().create(*m_gfxdecode, tilemap_get_info_delegate(FUNC(shootout_state::get_fg_tile_info),this), TILEMAP_SCAN_ROWS, 8, 8, 32, 32);
- m_foreground->set_transparent_pen(0 );
+ m_background = &machine().tilemap().create(*m_gfxdecode, tilemap_get_info_delegate(*this, FUNC(shootout_state::get_bg_tile_info)), TILEMAP_SCAN_ROWS, 8, 8, 32, 32);
+ m_foreground = &machine().tilemap().create(*m_gfxdecode, tilemap_get_info_delegate(*this, FUNC(shootout_state::get_fg_tile_info)), TILEMAP_SCAN_ROWS, 8, 8, 32, 32);
+ m_foreground->set_transparent_pen(0);
save_item(NAME(m_ccnt_old_val));
}