summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/fromance.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/fromance.cpp')
-rw-r--r--src/mame/video/fromance.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/video/fromance.cpp b/src/mame/video/fromance.cpp
index 06ffec1c4e2..eaad8257137 100644
--- a/src/mame/video/fromance.cpp
+++ b/src/mame/video/fromance.cpp
@@ -72,8 +72,8 @@ void fromance_state::init_common( )
/* state save */
save_item(NAME(m_selected_videoram));
- save_pointer(NAME(m_local_videoram[0].get()), 0x1000 * 3);
- save_pointer(NAME(m_local_videoram[1].get()), 0x1000 * 3);
+ save_pointer(NAME(m_local_videoram[0]), 0x1000 * 3);
+ save_pointer(NAME(m_local_videoram[1]), 0x1000 * 3);
save_item(NAME(m_selected_paletteram));
save_item(NAME(m_scrollx));
save_item(NAME(m_scrolly));
@@ -82,7 +82,7 @@ void fromance_state::init_common( )
save_item(NAME(m_flipscreen_old));
save_item(NAME(m_scrollx_ofs));
save_item(NAME(m_scrolly_ofs));
- save_pointer(NAME(m_local_paletteram.get()), 0x800 * 2);
+ save_pointer(NAME(m_local_paletteram), 0x800 * 2);
}
VIDEO_START_MEMBER(fromance_state,fromance)