summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/sound/lc82310.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/sound/lc82310.h')
-rw-r--r--src/devices/sound/lc82310.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/sound/lc82310.h b/src/devices/sound/lc82310.h
index 802c7bbe2e9..64a4372c3d4 100644
--- a/src/devices/sound/lc82310.h
+++ b/src/devices/sound/lc82310.h
@@ -33,7 +33,7 @@ protected:
virtual void device_start() override ATTR_COLD;
virtual void device_reset() override ATTR_COLD;
- 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;
private:
enum : uint8_t
@@ -63,7 +63,7 @@ private:
void handle_command(uint8_t cmd, uint8_t param);
void fill_buffer();
- void append_buffer(std::vector<write_stream_view> &outputs, int &pos, int scount);
+ void append_buffer(sound_stream &stream, int &pos, int scount);
sound_stream *stream;
std::unique_ptr<mp3_audio> mp3dec;