diff options
author | 2020-11-02 16:28:45 +0100 | |
---|---|---|
committer | 2020-11-02 16:28:58 +0100 | |
commit | 24a281741a2428fc96fefde39a2cbf430b328418 (patch) | |
tree | 31e282afb93656c40a7f2188f052f2a796497f1a /src/devices/bus/c64/dqbb.cpp | |
parent | 8d22f65d29b2018395b2e7700f140199e603eb6b (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.cpp | 2 |
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)); |