diff options
Diffstat (limited to 'src/devices/sound/swp00.cpp')
-rw-r--r-- | src/devices/sound/swp00.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/devices/sound/swp00.cpp b/src/devices/sound/swp00.cpp index 0fa494658b1..f94006a1868 100644 --- a/src/devices/sound/swp00.cpp +++ b/src/devices/sound/swp00.cpp @@ -97,6 +97,8 @@ void swp00_device::snd_w(offs_t offset, u8 data) // Synthesis -void swp00_device::sound_stream_update(sound_stream &stream, stream_sample_t **inputs, stream_sample_t **outputs, int samples) +void swp00_device::sound_stream_update(sound_stream &stream, std::vector<read_stream_view> const &inputs, std::vector<write_stream_view> &outputs) { + outputs[0].fill(0); + outputs[1].fill(0); } |