summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/zn.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/zn.cpp')
-rw-r--r--src/mame/drivers/zn.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/zn.cpp b/src/mame/drivers/zn.cpp
index e5168c86aa0..a5fc27eeca3 100644
--- a/src/mame/drivers/zn.cpp
+++ b/src/mame/drivers/zn.cpp
@@ -1185,7 +1185,7 @@ void zn_state::init_coh1000tb()
m_fx1b_fram = std::make_unique<uint8_t[]>(0x200);
subdevice<nvram_device>("fm1208s")->set_base(m_fx1b_fram.get(), 0x200);
- save_pointer(NAME(m_fx1b_fram.get()), 0x200);
+ save_pointer(NAME(m_fx1b_fram), 0x200);
}
MACHINE_CONFIG_START(zn_state::coh1000tb)
@@ -2149,7 +2149,7 @@ void zn_state::init_nbajamex()
m_nbajamex_sram = std::make_unique<uint8_t[]>(0x8000);
subdevice<nvram_device>("71256")->set_base(m_nbajamex_sram.get(), 0x8000);
- save_pointer(NAME(m_nbajamex_sram.get()), 0x8000);
+ save_pointer(NAME(m_nbajamex_sram), 0x8000);
save_item(NAME(m_nbajamex_rombank));
}