summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/c64/dqbb.cpp
diff options
context:
space:
mode:
author hap <happppp@users.noreply.github.com>2020-11-02 16:28:45 +0100
committer hap <happppp@users.noreply.github.com>2020-11-02 16:28:58 +0100
commit24a281741a2428fc96fefde39a2cbf430b328418 (patch)
tree31e282afb93656c40a7f2188f052f2a796497f1a /src/devices/bus/c64/dqbb.cpp
parent8d22f65d29b2018395b2e7700f140199e603eb6b (diff)
remove some unneeded usage of save_pointer + .get()
Diffstat (limited to 'src/devices/bus/c64/dqbb.cpp')
-rw-r--r--src/devices/bus/c64/dqbb.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/bus/c64/dqbb.cpp b/src/devices/bus/c64/dqbb.cpp
index 6f7e2bf7dab..e08bfbd05b5 100644
--- a/src/devices/bus/c64/dqbb.cpp
+++ b/src/devices/bus/c64/dqbb.cpp
@@ -54,7 +54,7 @@ void c64_dqbb_cartridge_device::device_start()
{
// allocate memory
m_nvram = std::make_unique<uint8_t[]>(0x4000);
- save_pointer(NAME(m_nvram.get()), 0x4000);
+ save_pointer(NAME(m_nvram), 0x4000);
// state saving
save_item(NAME(m_cs));