summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/equites.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/equites.cpp')
-rw-r--r--src/mame/video/equites.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/video/equites.cpp b/src/mame/video/equites.cpp
index 66e366a9632..6df9a32706a 100644
--- a/src/mame/video/equites.cpp
+++ b/src/mame/video/equites.cpp
@@ -120,7 +120,7 @@ TILE_GET_INFO_MEMBER(splndrbt_state::splndrbt_bg_info)
VIDEO_START_MEMBER(equites_state,equites)
{
m_fg_videoram = std::make_unique<uint8_t[]>(0x800);
- save_pointer(NAME(m_fg_videoram.get()), 0x800);
+ save_pointer(NAME(m_fg_videoram), 0x800);
m_fg_tilemap = &machine().tilemap().create(*m_gfxdecode, tilemap_get_info_delegate(FUNC(equites_state::equites_fg_info),this), TILEMAP_SCAN_COLS, 8, 8, 32, 32);
m_fg_tilemap->set_transparent_pen(0);
@@ -135,7 +135,7 @@ VIDEO_START_MEMBER(splndrbt_state,splndrbt)
assert(m_screen->format() == BITMAP_FORMAT_IND16);
m_fg_videoram = std::make_unique<uint8_t[]>(0x800);
- save_pointer(NAME(m_fg_videoram.get()), 0x800);
+ save_pointer(NAME(m_fg_videoram), 0x800);
m_fg_tilemap = &machine().tilemap().create(*m_gfxdecode, tilemap_get_info_delegate(FUNC(splndrbt_state::splndrbt_fg_info),this), TILEMAP_SCAN_COLS, 8, 8, 32, 32);
m_fg_tilemap->set_transparent_pen(0);