summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/ssv.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/ssv.h')
-rw-r--r--src/mame/includes/ssv.h8
1 files changed, 3 insertions, 5 deletions
diff --git a/src/mame/includes/ssv.h b/src/mame/includes/ssv.h
index 4598c2ed80d..ad0a9c4925f 100644
--- a/src/mame/includes/ssv.h
+++ b/src/mame/includes/ssv.h
@@ -1,10 +1,8 @@
-class ssv_state : public driver_data_t
+class ssv_state : public driver_device
{
public:
- static driver_data_t *alloc(running_machine &machine) { return auto_alloc_clear(&machine, ssv_state(machine)); }
-
- ssv_state(running_machine &machine)
- : driver_data_t(machine) { }
+ ssv_state(running_machine &machine, const driver_device_config_base &config)
+ : driver_device(machine, config) { }
UINT16 *scroll;
UINT16 *paletteram;