summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/supbtime.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/supbtime.h')
-rw-r--r--src/mame/includes/supbtime.h12
1 files changed, 7 insertions, 5 deletions
diff --git a/src/mame/includes/supbtime.h b/src/mame/includes/supbtime.h
index 381a7170dfd..adbd1071104 100644
--- a/src/mame/includes/supbtime.h
+++ b/src/mame/includes/supbtime.h
@@ -8,14 +8,16 @@ class supbtime_state : public driver_device
{
public:
supbtime_state(const machine_config &mconfig, device_type type, const char *tag)
- : driver_device(mconfig, type, tag) { }
+ : driver_device(mconfig, type, tag) ,
+ m_spriteram(*this, "spriteram"),
+ m_pf1_rowscroll(*this, "pf1_rowscroll"),
+ m_pf2_rowscroll(*this, "pf2_rowscroll"){ }
/* memory pointers */
- UINT16 * m_pf1_rowscroll;
- UINT16 * m_pf2_rowscroll;
- UINT16 * m_spriteram;
+ required_shared_ptr<UINT16> m_spriteram;
+ required_shared_ptr<UINT16> m_pf1_rowscroll;
+ required_shared_ptr<UINT16> m_pf2_rowscroll;
// UINT16 * m_paletteram; // currently this uses generic palette handling (in decocomn.c)
- size_t m_spriteram_size;
/* video-related */