summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/sound/2610intf.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/sound/2610intf.cpp')
-rw-r--r--src/devices/sound/2610intf.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/sound/2610intf.cpp b/src/devices/sound/2610intf.cpp
index 813079d6cb2..8660056c828 100644
--- a/src/devices/sound/2610intf.cpp
+++ b/src/devices/sound/2610intf.cpp
@@ -208,7 +208,7 @@ WRITE8_MEMBER( ym2610_device::write )
}
-const device_type YM2610 = &device_creator<ym2610_device>;
+const device_type YM2610 = device_creator<ym2610_device>;
ym2610_device::ym2610_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock)
: ay8910_device(mconfig, YM2610, "YM2610", tag, owner, clock, PSG_TYPE_YM, 1, 0, "ym2610", __FILE__)
@@ -224,7 +224,7 @@ ym2610_device::ym2610_device(const machine_config &mconfig, device_type type, co
{
}
-const device_type YM2610B = &device_creator<ym2610b_device>;
+const device_type YM2610B = device_creator<ym2610b_device>;
ym2610b_device::ym2610b_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock)
: ym2610_device(mconfig, YM2610B, "YM2610B", tag, owner, clock, "ym2610b", __FILE__)