summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/sound/iopspu.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/sound/iopspu.cpp')
-rw-r--r--src/devices/sound/iopspu.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/devices/sound/iopspu.cpp b/src/devices/sound/iopspu.cpp
index 1d4e78f879c..0267c31eadb 100644
--- a/src/devices/sound/iopspu.cpp
+++ b/src/devices/sound/iopspu.cpp
@@ -89,9 +89,10 @@ void iop_spu_device::dma_done(int bank)
core.m_status &= ~STATUS_DMA_ACTIVE;
}
-void iop_spu_device::sound_stream_update(sound_stream &stream, stream_sample_t **inputs, stream_sample_t **outputs, int samples)
+void iop_spu_device::sound_stream_update(sound_stream &stream, std::vector<read_stream_view> const &inputs, std::vector<write_stream_view> &outputs)
{
// TODO
+ outputs[0].fill(0);
}
TIMER_CALLBACK_MEMBER(iop_spu_device::autodma_done_timer_hack)