diff options
Diffstat (limited to 'src/devices/sound/cdp1864.h')
-rw-r--r-- | src/devices/sound/cdp1864.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/sound/cdp1864.h b/src/devices/sound/cdp1864.h index 54c8f3b8ab2..6c589128ef7 100644 --- a/src/devices/sound/cdp1864.h +++ b/src/devices/sound/cdp1864.h @@ -115,7 +115,7 @@ protected: virtual void device_timer(emu_timer &timer, device_timer_id id, int param, void *ptr) override; // internal callbacks - virtual void sound_stream_update(sound_stream &stream, stream_sample_t **inputs, stream_sample_t **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; private: enum @@ -157,7 +157,7 @@ private: // sound state int m_aoe; // audio on int m_latch; // sound latch - int16_t m_signal; // current signal + stream_buffer::sample_t m_signal; // current signal int m_incr; // initial wave state // timers |