diff options
Diffstat (limited to 'src/devices/sound/swp20.cpp')
-rw-r--r-- | src/devices/sound/swp20.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/devices/sound/swp20.cpp b/src/devices/sound/swp20.cpp index c1c92c8cb27..a9de3851fef 100644 --- a/src/devices/sound/swp20.cpp +++ b/src/devices/sound/swp20.cpp @@ -69,7 +69,8 @@ void swp20_device::snd_w(offs_t offset, u8 data) logerror("w %02x, %02x %s\n", offset, data, machine().describe_context()); } -void swp20_device::sound_stream_update_legacy(sound_stream &stream, stream_sample_t const * const *inputs, stream_sample_t * const *outputs, int samples) +void swp20_device::sound_stream_update(sound_stream &stream, std::vector<read_stream_view> const &inputs, std::vector<write_stream_view> &outputs) { + outputs[0].fill(0); } |