summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/sound/awacs.h
diff options
context:
space:
mode:
author Aaron Giles <aaron@aarongiles.com>2020-09-14 01:20:20 -0700
committer Aaron Giles <aaron@aarongiles.com>2020-09-14 01:20:20 -0700
commitd109811e3c6bcee6f0f6006bb94f9b3ccdc19871 (patch)
tree04eee97bd21fd1420a87a1a907c3fa40117a81db /src/devices/sound/awacs.h
parent72be63e246b6f4f4cfa991a47f7a23645ce403ad (diff)
Converted 'a' sound devices to new callbacks.
Diffstat (limited to 'src/devices/sound/awacs.h')
-rw-r--r--src/devices/sound/awacs.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/sound/awacs.h b/src/devices/sound/awacs.h
index 6c85317ddfa..0840d21d0d9 100644
--- a/src/devices/sound/awacs.h
+++ b/src/devices/sound/awacs.h
@@ -36,7 +36,7 @@ protected:
virtual void device_reset() override;
virtual void device_timer(emu_timer &timer, device_timer_id id, int param, void *ptr) override;
- 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;
sound_stream *m_stream;