summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/taotaido.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/taotaido.cpp')
-rw-r--r--src/mame/video/taotaido.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/video/taotaido.cpp b/src/mame/video/taotaido.cpp
index 9f23e7eb720..2da4879bcff 100644
--- a/src/mame/video/taotaido.cpp
+++ b/src/mame/video/taotaido.cpp
@@ -92,7 +92,7 @@ uint32_t taotaido_state::tile_callback( uint32_t code )
void taotaido_state::video_start()
{
- m_bg_tilemap = &machine().tilemap().create(*m_gfxdecode, tilemap_get_info_delegate(FUNC(taotaido_state::bg_tile_info),this),tilemap_mapper_delegate(FUNC(taotaido_state::tilemap_scan_rows),this),16,16,128,64);
+ m_bg_tilemap = &machine().tilemap().create(*m_gfxdecode, tilemap_get_info_delegate(*this, FUNC(taotaido_state::bg_tile_info)), tilemap_mapper_delegate(*this, FUNC(taotaido_state::tilemap_scan_rows)), 16,16, 128,64);
m_spriteram_old = std::make_unique<uint16_t[]>(0x2000/2);
m_spriteram_older = std::make_unique<uint16_t[]>(0x2000/2);