diff options
Diffstat (limited to 'src/devices/sound/vrender0.h')
-rw-r--r-- | src/devices/sound/vrender0.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/sound/vrender0.h b/src/devices/sound/vrender0.h index 99e2235a1be..1e234232c69 100644 --- a/src/devices/sound/vrender0.h +++ b/src/devices/sound/vrender0.h @@ -78,7 +78,7 @@ protected: virtual void device_clock_changed() override; // sound stream update overrides - virtual void sound_stream_update_legacy(sound_stream &stream, stream_sample_t const * const *inputs, stream_sample_t * const *outputs, int samples) override; + virtual void sound_stream_update(sound_stream &stream, std::vector<read_stream_view> const &inputs, std::vector<write_stream_view> &outputs) override; // device_memory_interface configuration virtual space_config_vector memory_space_config() const override; @@ -151,7 +151,7 @@ private: u8 m_MaxChn = 0x1f; // Max Channels - 1 u8 m_ChnClkNum = 0; // Clock Number per Channel u16 m_Ctrl = 0; // 0x602 Control Functions - void VR0_RenderAudio(int nsamples, stream_sample_t *l, stream_sample_t *r); + void VR0_RenderAudio(write_stream_view &l, write_stream_view &r); }; DECLARE_DEVICE_TYPE(SOUND_VRENDER0, vr0sound_device) |