summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/sound/ym2413.h
diff options
context:
space:
mode:
author Aaron Giles <aaron@aarongiles.com>2020-09-21 20:45:38 -0700
committer Aaron Giles <aaron@aarongiles.com>2020-09-21 20:45:38 -0700
commitf051f97e6c16374bf2612b98be4c67d64695cbd7 (patch)
tree25fb85c2f134676fc4de852097140ca088ed1775 /src/devices/sound/ym2413.h
parentecd3333757e171d5d98bc323dba1f7c403386e11 (diff)
ym2203/ym2608/ym2610/ym2612/ymf262/ym3526/ym3812/y8950/ym2413/ymf271/ymf278b/ymz280b/ymz770/zsg2: update to new stream callbacks
Diffstat (limited to 'src/devices/sound/ym2413.h')
-rw-r--r--src/devices/sound/ym2413.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/sound/ym2413.h b/src/devices/sound/ym2413.h
index 2e1db357150..27174977332 100644
--- a/src/devices/sound/ym2413.h
+++ b/src/devices/sound/ym2413.h
@@ -25,7 +25,7 @@ protected:
virtual void device_reset() 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;
uint8_t m_inst_table[19][8];