From 4c15d28de4be992907eb1cb065cb6a5fde45581a Mon Sep 17 00:00:00 2001 From: Scott Stone Date: Mon, 28 Sep 2015 22:37:05 -0400 Subject: [PATCH] device shortname duplication fix (nw) --- src/devices/machine/idectrl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/devices/machine/idectrl.c b/src/devices/machine/idectrl.c index 403364d57c1..d1f81a12426 100644 --- a/src/devices/machine/idectrl.c +++ b/src/devices/machine/idectrl.c @@ -90,7 +90,7 @@ WRITE16_MEMBER( ide_controller_device::write_cs1 ) const device_type IDE_CONTROLLER_32 = &device_creator; ide_controller_32_device::ide_controller_32_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) : - ide_controller_device(mconfig, IDE_CONTROLLER, "IDE Controller (32 bit)", tag, owner, clock, "ide_controller", __FILE__) + ide_controller_device(mconfig, IDE_CONTROLLER, "IDE Controller (32 bit)", tag, owner, clock, "ide_controller32", __FILE__) { }