diff options
Diffstat (limited to 'src/mame/machine/wpc_shift.cpp')
-rw-r--r-- | src/mame/machine/wpc_shift.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/machine/wpc_shift.cpp b/src/mame/machine/wpc_shift.cpp index a8cfa7c853c..1a51477694a 100644 --- a/src/mame/machine/wpc_shift.cpp +++ b/src/mame/machine/wpc_shift.cpp @@ -4,10 +4,10 @@ #include "emu.h" #include "wpc_shift.h" -const device_type WPC_SHIFT = device_creator<wpc_shift_device>; +DEFINE_DEVICE_TYPE(WPC_SHIFT, wpc_shift_device, "wpc_shift", "Windows Pinball Controller Shifter") wpc_shift_device::wpc_shift_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) : - device_t(mconfig, WPC_SHIFT, "Williams Pinball Controller Shifter", tag, owner, clock, "wpc_shift", __FILE__) + device_t(mconfig, WPC_SHIFT, tag, owner, clock) { } |