summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/sound/lynx.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/sound/lynx.h')
-rw-r--r--src/devices/sound/lynx.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/devices/sound/lynx.h b/src/devices/sound/lynx.h
index 6f9eb575013..d0b3b73c961 100644
--- a/src/devices/sound/lynx.h
+++ b/src/devices/sound/lynx.h
@@ -51,12 +51,12 @@ protected:
lynx_sound_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, uint32_t clock);
// device-level overrides
- virtual void device_start() override;
- virtual void device_reset() override;
+ virtual void device_start() override ATTR_COLD;
+ virtual void device_reset() override ATTR_COLD;
virtual void device_clock_changed() override;
// 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;
void reset_channel(LYNX_AUDIO *channel);
void shift(int chan_nr);
@@ -82,10 +82,10 @@ public:
protected:
// device-level overrides
- virtual void device_start() override;
+ 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;
};