diff options
Diffstat (limited to 'src/mame/interton/vc4000_a.cpp')
-rw-r--r-- | src/mame/interton/vc4000_a.cpp | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/src/mame/interton/vc4000_a.cpp b/src/mame/interton/vc4000_a.cpp index 9004d256635..418ec6ee8c5 100644 --- a/src/mame/interton/vc4000_a.cpp +++ b/src/mame/interton/vc4000_a.cpp @@ -39,14 +39,11 @@ void vc4000_sound_device::device_start() // sound_stream_update - handle a stream update //------------------------------------------------- -void vc4000_sound_device::sound_stream_update(sound_stream &stream, std::vector<read_stream_view> const &inputs, std::vector<write_stream_view> &outputs) +void vc4000_sound_device::sound_stream_update(sound_stream &stream) { - int i; - auto &buffer = outputs[0]; - - for (i = 0; i < buffer.samples(); i++) + for (int i = 0; i < stream.samples(); i++) { - buffer.put(i, (m_reg[0] && m_pos <= m_size / 2) ? 1.0 : 0.0); + stream.put(0, i, (m_reg[0] && m_pos <= m_size / 2) ? 1.0 : 0.0); if (m_pos <= m_size) m_pos++; if (m_pos > m_size) |