diff options
Diffstat (limited to 'src/devices/sound/dspv.cpp')
-rw-r--r-- | src/devices/sound/dspv.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/sound/dspv.cpp b/src/devices/sound/dspv.cpp index 05c322db88e..7305c1c5298 100644 --- a/src/devices/sound/dspv.cpp +++ b/src/devices/sound/dspv.cpp @@ -93,7 +93,7 @@ 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_legacy(sound_stream &stream, stream_sample_t const * const *inputs, stream_sample_t * const *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) { } |