summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/sound/cdp1863.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/sound/cdp1863.h')
-rw-r--r--src/devices/sound/cdp1863.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/sound/cdp1863.h b/src/devices/sound/cdp1863.h
index e44b65a6f9d..ec0706e9a7c 100644
--- a/src/devices/sound/cdp1863.h
+++ b/src/devices/sound/cdp1863.h
@@ -54,7 +54,7 @@ protected:
virtual void device_start() 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:
sound_stream *m_stream;
@@ -65,7 +65,7 @@ private:
// sound state
int m_oe; // output enable
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
};