summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/sound/tiaintf.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/sound/tiaintf.c')
-rw-r--r--src/emu/sound/tiaintf.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/emu/sound/tiaintf.c b/src/emu/sound/tiaintf.c
index ffe1ed56943..a95d173c643 100644
--- a/src/emu/sound/tiaintf.c
+++ b/src/emu/sound/tiaintf.c
@@ -50,7 +50,7 @@ const device_type TIA = &device_creator<tia_device>;
tia_device::tia_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
: device_t(mconfig, TIA, "TIA", tag, owner, clock),
- device_sound_interface(mconfig, *this)
+ device_sound_interface(mconfig, *this)
{
m_token = global_alloc_clear(tia_state);
}
@@ -92,5 +92,3 @@ void tia_device::sound_stream_update(sound_stream &stream, stream_sample_t **inp
// should never get here
fatalerror("sound_stream_update called; not applicable to legacy sound devices\n");
}
-
-