summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/sauro.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/sauro.cpp')
-rw-r--r--src/mame/video/sauro.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/video/sauro.cpp b/src/mame/video/sauro.cpp
index c6b7965e3e8..1a8bcb4c800 100644
--- a/src/mame/video/sauro.cpp
+++ b/src/mame/video/sauro.cpp
@@ -93,10 +93,10 @@ WRITE8_MEMBER(sauro_state::sauro_scroll_fg_w)
VIDEO_START_MEMBER(sauro_state,sauro)
{
- m_bg_tilemap = &machine().tilemap().create(*m_gfxdecode, tilemap_get_info_delegate(FUNC(sauro_state::get_tile_info_bg),this), TILEMAP_SCAN_COLS,
+ m_bg_tilemap = &machine().tilemap().create(*m_gfxdecode, tilemap_get_info_delegate(*this, FUNC(sauro_state::get_tile_info_bg)), TILEMAP_SCAN_COLS,
8, 8, 32, 32);
- m_fg_tilemap = &machine().tilemap().create(*m_gfxdecode, tilemap_get_info_delegate(FUNC(sauro_state::get_tile_info_fg),this), TILEMAP_SCAN_COLS,
+ m_fg_tilemap = &machine().tilemap().create(*m_gfxdecode, tilemap_get_info_delegate(*this, FUNC(sauro_state::get_tile_info_fg)), TILEMAP_SCAN_COLS,
8, 8, 32, 32);
m_fg_tilemap->set_transparent_pen(0);
@@ -164,7 +164,7 @@ uint32_t sauro_state::screen_update_sauro(screen_device &screen, bitmap_ind16 &b
VIDEO_START_MEMBER(sauro_state,trckydoc)
{
- m_bg_tilemap = &machine().tilemap().create(*m_gfxdecode, tilemap_get_info_delegate(FUNC(sauro_state::get_tile_info_bg),this), TILEMAP_SCAN_COLS,
+ m_bg_tilemap = &machine().tilemap().create(*m_gfxdecode, tilemap_get_info_delegate(*this, FUNC(sauro_state::get_tile_info_bg)), TILEMAP_SCAN_COLS,
8, 8, 32, 32);
}