diff options
Diffstat (limited to 'src/mame/includes/bottom9.h')
-rw-r--r-- | src/mame/includes/bottom9.h | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/src/mame/includes/bottom9.h b/src/mame/includes/bottom9.h index faa5d78f119..92b7d5d98c0 100644 --- a/src/mame/includes/bottom9.h +++ b/src/mame/includes/bottom9.h @@ -4,13 +4,11 @@ *************************************************************************/ -class bottom9_state : public driver_data_t +class bottom9_state : public driver_device { public: - static driver_data_t *alloc(running_machine &machine) { return auto_alloc_clear(&machine, bottom9_state(machine)); } - - bottom9_state(running_machine &machine) - : driver_data_t(machine) { } + bottom9_state(running_machine &machine, const driver_device_config_base &config) + : driver_device(machine, config) { } /* memory pointers */ // UINT8 * paletteram; // currently this uses generic palette handling |