summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/sound/2151intf.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/sound/2151intf.c')
-rw-r--r--src/emu/sound/2151intf.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/emu/sound/2151intf.c b/src/emu/sound/2151intf.c
index 4a08ef25f52..79b8d1077c5 100644
--- a/src/emu/sound/2151intf.c
+++ b/src/emu/sound/2151intf.c
@@ -22,9 +22,9 @@ const device_type YM2151 = &device_creator<ym2151_device>;
ym2151_device::ym2151_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
: device_t(mconfig, YM2151, "YM2151", tag, owner, clock),
- device_sound_interface(mconfig, *this),
- m_irqhandler(*this),
- m_portwritehandler(*this)
+ device_sound_interface(mconfig, *this),
+ m_irqhandler(*this),
+ m_portwritehandler(*this)
{
}
@@ -41,7 +41,7 @@ READ8_MEMBER( ym2151_device::read )
return ym2151_read_status(m_chip);
}
else
- return 0xff; /* confirmed on a real YM2151 */
+ return 0xff; /* confirmed on a real YM2151 */
}