diff options
Diffstat (limited to 'src/mame/drivers/vd.c')
-rw-r--r-- | src/mame/drivers/vd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/vd.c b/src/mame/drivers/vd.c index 196936e25bf..da69c8bdf0e 100644 --- a/src/mame/drivers/vd.c +++ b/src/mame/drivers/vd.c @@ -6,8 +6,8 @@ extern const char layout_pinball[]; class vd_state : public driver_device { public: - vd_state(running_machine &machine, const driver_device_config_base &config) - : driver_device(machine, config) { } + vd_state(const machine_config &mconfig, device_type type, const char *tag) + : driver_device(mconfig, type, tag) { } }; |