summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/nes/hes.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/nes/hes.cpp')
-rw-r--r--src/devices/bus/nes/hes.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/bus/nes/hes.cpp b/src/devices/bus/nes/hes.cpp
index 25d34fc4677..8d1d3a7a590 100644
--- a/src/devices/bus/nes/hes.cpp
+++ b/src/devices/bus/nes/hes.cpp
@@ -30,11 +30,11 @@
// constructor
//-------------------------------------------------
-const device_type NES_HES = device_creator<nes_hes_device>;
+DEFINE_DEVICE_TYPE(NES_HES, nes_hes_device, "nes_hes", "NES Cart HES PCB")
nes_hes_device::nes_hes_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock)
- : nes_nrom_device(mconfig, NES_HES, "NES Cart HES PCB", tag, owner, clock, "nes_hes", __FILE__)
+ : nes_nrom_device(mconfig, NES_HES, tag, owner, clock)
{
}