summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/playch10.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/playch10.cpp')
-rw-r--r--src/mame/video/playch10.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/video/playch10.cpp b/src/mame/video/playch10.cpp
index 935af106c14..e588fb72a7e 100644
--- a/src/mame/video/playch10.cpp
+++ b/src/mame/video/playch10.cpp
@@ -76,7 +76,7 @@ void playch10_state::video_start()
const uint8_t *bios = memregion("maincpu")->base();
m_pc10_bios = (bios[3] == 0x2a) ? 1 : 2;
- m_bg_tilemap = &machine().tilemap().create(*m_gfxdecode, tilemap_get_info_delegate(FUNC(playch10_state::get_bg_tile_info),this), TILEMAP_SCAN_ROWS,
+ m_bg_tilemap = &machine().tilemap().create(*m_gfxdecode, tilemap_get_info_delegate(*this, FUNC(playch10_state::get_bg_tile_info)), TILEMAP_SCAN_ROWS,
8, 8, 32, 32);
}
@@ -85,7 +85,7 @@ VIDEO_START_MEMBER(playch10_state,playch10_hboard)
const uint8_t *bios = memregion("maincpu")->base();
m_pc10_bios = (bios[3] == 0x2a) ? 1 : 2;
- m_bg_tilemap = &machine().tilemap().create(*m_gfxdecode, tilemap_get_info_delegate(FUNC(playch10_state::get_bg_tile_info),this), TILEMAP_SCAN_ROWS,
+ m_bg_tilemap = &machine().tilemap().create(*m_gfxdecode, tilemap_get_info_delegate(*this, FUNC(playch10_state::get_bg_tile_info)), TILEMAP_SCAN_ROWS,
8, 8, 32, 32);
}