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