summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/sound/mea8000.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/sound/mea8000.h')
-rw-r--r--src/devices/sound/mea8000.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/sound/mea8000.h b/src/devices/sound/mea8000.h
index 14cb0384d09..7538bffa62c 100644
--- a/src/devices/sound/mea8000.h
+++ b/src/devices/sound/mea8000.h
@@ -29,7 +29,7 @@ public:
protected:
// device-level overrides
virtual void device_start() 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;
private:
/* filter coefficients from frequencies */
@@ -111,7 +111,7 @@ private:
emu_timer *m_timer = nullptr;
sound_stream * m_stream = nullptr;
- stream_sample_t m_output = 0;
+ int32_t m_output = 0;
int m_cos_table[TABLE_LEN]; /* fm => cos coefficient */
int m_exp_table[TABLE_LEN]; /* bw => exp coefficient */