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 87f16302cf3..5a2d64183f0 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(sound_stream &stream, std::vector<read_stream_view> const &inputs, std::vector<write_stream_view> &outputs) override; + virtual void sound_stream_update(sound_stream &stream) 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(write_stream_view &l, write_stream_view &r); + void VR0_RenderAudio(sound_stream &stream); }; DECLARE_DEVICE_TYPE(SOUND_VRENDER0, vr0sound_device) |