diff options
Diffstat (limited to 'src/mame/includes/capbowl.h')
-rw-r--r-- | src/mame/includes/capbowl.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/mame/includes/capbowl.h b/src/mame/includes/capbowl.h index 84923892bd4..1f5e8a43817 100644 --- a/src/mame/includes/capbowl.h +++ b/src/mame/includes/capbowl.h @@ -10,12 +10,13 @@ class capbowl_state : public driver_device { public: capbowl_state(const machine_config &mconfig, device_type type, const char *tag) - : driver_device(mconfig, type, tag) { } + : driver_device(mconfig, type, tag) , + m_rowaddress(*this, "rowaddress"){ } void init_nvram(nvram_device &nvram, void *base, size_t size); /* memory pointers */ - UINT8 * m_rowaddress; + required_shared_ptr<UINT8> m_rowaddress; /* video-related */ offs_t m_blitter_addr; |