diff options
Diffstat (limited to 'src/devices/sound/tiaintf.cpp')
-rw-r--r-- | src/devices/sound/tiaintf.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/sound/tiaintf.cpp b/src/devices/sound/tiaintf.cpp index da0f0c27759..d2db180b2b2 100644 --- a/src/devices/sound/tiaintf.cpp +++ b/src/devices/sound/tiaintf.cpp @@ -52,13 +52,13 @@ void tia_device::device_stop() // sound_stream_update - handle a stream update //------------------------------------------------- -void tia_device::sound_stream_update(sound_stream &stream, stream_sample_t **inputs, stream_sample_t **outputs, int samples) +void tia_device::sound_stream_update(sound_stream &stream) { - tia_process(m_chip, outputs[0], samples); + tia_process(m_chip, stream); } -WRITE8_MEMBER( tia_device::tia_sound_w ) +void tia_device::tia_sound_w(offs_t offset, uint8_t data) { m_channel->update(); tia_write(m_chip, offset, data); |