diff options
Diffstat (limited to 'src/mame/machine/wpc_out.cpp')
-rw-r--r-- | src/mame/machine/wpc_out.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/machine/wpc_out.cpp b/src/mame/machine/wpc_out.cpp index 1e5cb36f084..5a8941efab9 100644 --- a/src/mame/machine/wpc_out.cpp +++ b/src/mame/machine/wpc_out.cpp @@ -4,10 +4,10 @@ #include "emu.h" #include "wpc_out.h" -const device_type WPC_OUT = device_creator<wpc_out_device>; +DEFINE_DEVICE_TYPE(WPC_OUT, wpc_out_device, "wpc_out", "Williams Pinball Controller Output Control") wpc_out_device::wpc_out_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) : - device_t(mconfig, WPC_OUT, "Williams Pinball Controller Output Control", tag, owner, clock, "wpc_out", __FILE__) + device_t(mconfig, WPC_OUT, tag, owner, clock) { names = nullptr; } |