diff options
Diffstat (limited to 'src/mame/includes/mappy.h')
-rw-r--r-- | src/mame/includes/mappy.h | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/src/mame/includes/mappy.h b/src/mame/includes/mappy.h index 91dbafa772c..451649219f6 100644 --- a/src/mame/includes/mappy.h +++ b/src/mame/includes/mappy.h @@ -1,10 +1,8 @@ -class mappy_state : public driver_data_t +class mappy_state : public driver_device { public: - static driver_data_t *alloc(running_machine &machine) { return auto_alloc_clear(&machine, mappy_state(machine)); } - - mappy_state(running_machine &machine) - : driver_data_t(machine) { } + mappy_state(running_machine &machine, const driver_device_config_base &config) + : driver_device(machine, config) { } UINT8 *videoram; UINT8 *spriteram; |