diff options
Diffstat (limited to 'src/mame/drivers/peplus.cpp')
-rw-r--r-- | src/mame/drivers/peplus.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/peplus.cpp b/src/mame/drivers/peplus.cpp index 07ef7eb4c8b..13afaf893d6 100644 --- a/src/mame/drivers/peplus.cpp +++ b/src/mame/drivers/peplus.cpp @@ -927,7 +927,7 @@ TILE_GET_INFO_MEMBER(peplus_state::get_bg_tile_info) void peplus_state::video_start() { - m_bg_tilemap = &machine().tilemap().create(m_gfxdecode, tilemap_get_info_delegate(FUNC(peplus_state::get_bg_tile_info),this), TILEMAP_SCAN_ROWS, 8, 8, 40, 25); + m_bg_tilemap = &machine().tilemap().create(*m_gfxdecode, tilemap_get_info_delegate(FUNC(peplus_state::get_bg_tile_info),this), TILEMAP_SCAN_ROWS, 8, 8, 40, 25); m_palette_ram = std::make_unique<UINT8[]>(0x3000); memset(m_palette_ram.get(), 0, 0x3000); m_palette_ram2 = std::make_unique<UINT8[]>(0x3000); |