summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/sound/iremga20.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/sound/iremga20.c')
-rw-r--r--src/emu/sound/iremga20.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/emu/sound/iremga20.c b/src/emu/sound/iremga20.c
index aeddb877248..2203aa0a6d4 100644
--- a/src/emu/sound/iremga20.c
+++ b/src/emu/sound/iremga20.c
@@ -197,7 +197,7 @@ READ8_DEVICE_HANDLER( irem_ga20_r )
switch (offset & 0x7)
{
- case 7: // voice status. bit 0 is 1 if active. (routine around 0xccc in rtypeleo)
+ case 7: // voice status. bit 0 is 1 if active. (routine around 0xccc in rtypeleo)
return chip->channel[channel].play ? 1 : 0;
default:
@@ -267,7 +267,7 @@ const device_type IREMGA20 = &device_creator<iremga20_device>;
iremga20_device::iremga20_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
: device_t(mconfig, IREMGA20, "Irem GA20", tag, owner, clock),
- device_sound_interface(mconfig, *this)
+ device_sound_interface(mconfig, *this)
{
m_token = global_alloc_clear(ga20_state);
}
@@ -309,5 +309,3 @@ void iremga20_device::sound_stream_update(sound_stream &stream, stream_sample_t
// should never get here
fatalerror("sound_stream_update called; not applicable to legacy sound devices\n");
}
-
-