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/pagefox.h | |
parent | 7afab9bda2b90efc60412ec7ef3215466b53fb21 (diff) |
(MESS) Used shared_ptr instead of UINT8* in the Commodore cartridges. (nw)
Diffstat (limited to 'src/emu/bus/c64/pagefox.h')
-rw-r--r-- | src/emu/bus/c64/pagefox.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/emu/bus/c64/pagefox.h b/src/emu/bus/c64/pagefox.h index 79d7030d497..5437510b3c1 100644 --- a/src/emu/bus/c64/pagefox.h +++ b/src/emu/bus/c64/pagefox.h @@ -43,6 +43,8 @@ protected: virtual void c64_cd_w(address_space &space, offs_t offset, UINT8 data, int sphi2, int ba, int roml, int romh, int io1, int io2); private: + optional_shared_ptr<UINT8> m_ram; + UINT8 m_bank; }; |