diff options
author | 2016-08-26 16:53:13 +1000 | |
---|---|---|
committer | 2016-08-26 16:53:13 +1000 | |
commit | e38a1e4737f64bfa44ca443090b58a9f69fd489b (patch) | |
tree | d14b898ce9c9b0739b9be38acf5bc09449829770 /src/mame/drivers/acommand.cpp | |
parent | 11b806878ffe2a25b60132af61e177c6395ff56a (diff) |
Prepare to make object finders behave like a pointer, not a half-pointer half reference part 1 (nw)
Diffstat (limited to 'src/mame/drivers/acommand.cpp')
-rw-r--r-- | src/mame/drivers/acommand.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/acommand.cpp b/src/mame/drivers/acommand.cpp index 5da92a119ce..ccbf9b21617 100644 --- a/src/mame/drivers/acommand.cpp +++ b/src/mame/drivers/acommand.cpp @@ -196,8 +196,8 @@ void acommand_state::draw_sprites(bitmap_ind16 &bitmap, const rectangle &cliprec void acommand_state::video_start() { - m_tx_tilemap = &machine().tilemap().create(m_gfxdecode, tilemap_get_info_delegate(FUNC(acommand_state::ac_get_tx_tile_info),this),TILEMAP_SCAN_COLS,8,8,512,32); - m_bg_tilemap = &machine().tilemap().create(m_gfxdecode, tilemap_get_info_delegate(FUNC(acommand_state::ac_get_bg_tile_info),this),tilemap_mapper_delegate(FUNC(acommand_state::bg_scan),this),16,16,256,16); + m_tx_tilemap = &machine().tilemap().create(*m_gfxdecode, tilemap_get_info_delegate(FUNC(acommand_state::ac_get_tx_tile_info),this),TILEMAP_SCAN_COLS,8,8,512,32); + m_bg_tilemap = &machine().tilemap().create(*m_gfxdecode, tilemap_get_info_delegate(FUNC(acommand_state::ac_get_bg_tile_info),this),tilemap_mapper_delegate(FUNC(acommand_state::bg_scan),this),16,16,256,16); m_ac_vregs = std::make_unique<UINT16[]>(0x80/2); |