summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/sound/beep.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/sound/beep.h')
-rw-r--r--src/devices/sound/beep.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/sound/beep.h b/src/devices/sound/beep.h
index a33ab803020..651ad143985 100644
--- a/src/devices/sound/beep.h
+++ b/src/devices/sound/beep.h
@@ -28,14 +28,14 @@ protected:
virtual void device_start() override ATTR_COLD;
// sound stream update overrides
- virtual void sound_stream_update(sound_stream &stream, std::vector<read_stream_view> const &inputs, std::vector<write_stream_view> &outputs) override;
+ virtual void sound_stream_update(sound_stream &stream) override;
private:
sound_stream *m_stream; // stream number
bool m_enable; // enable beep
uint32_t m_frequency; // set frequency - this can be changed using the appropriate function
int32_t m_incr; // initial wave state
- stream_buffer::sample_t m_signal; // current signal
+ sound_stream::sample_t m_signal; // current signal
};
DECLARE_DEVICE_TYPE(BEEP, beep_device)