diff options
author | 2013-12-20 16:04:11 +0000 | |
---|---|---|
committer | 2013-12-20 16:04:11 +0000 | |
commit | 8c7486fa5d9eb873577770a92bc524770ed402ba (patch) | |
tree | 7343677631c224588f7113cd61c40747293de5b8 /src/emu/bus/c64/dqbb.c | |
parent | 7afab9bda2b90efc60412ec7ef3215466b53fb21 (diff) |
(MESS) Used shared_ptr instead of UINT8* in the Commodore cartridges. (nw)
Diffstat (limited to 'src/emu/bus/c64/dqbb.c')
-rw-r--r-- | src/emu/bus/c64/dqbb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/bus/c64/dqbb.c b/src/emu/bus/c64/dqbb.c index f7b4b2a504a..dbbdc5f1d8b 100644 --- a/src/emu/bus/c64/dqbb.c +++ b/src/emu/bus/c64/dqbb.c @@ -53,7 +53,7 @@ c64_dqbb_cartridge_device::c64_dqbb_cartridge_device(const machine_config &mconf void c64_dqbb_cartridge_device::device_start() { // allocate memory - c64_nvram_pointer(machine(), 0x4000); + m_nvram.allocate(0x4000); // state saving save_item(NAME(m_cs)); |