diff options
author | 2024-09-26 13:07:03 -0400 | |
---|---|---|
committer | 2024-09-27 03:07:03 +1000 | |
commit | 48933ef893c541eb6ff05366b906cfe42c23b4b1 (patch) | |
tree | 3d165d96a15eaee13b6e421e8b345745d0c51833 /src/devices/sound/lmc1992.h | |
parent | 0125087cbe3ce69cbd99fb4f65c8ece580e0dd8b (diff) |
Added ATTR_COLD to common lifecycle methods for many files in src/devices. (#12822)
Diffstat (limited to 'src/devices/sound/lmc1992.h')
-rw-r--r-- | src/devices/sound/lmc1992.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/sound/lmc1992.h b/src/devices/sound/lmc1992.h index d728757299c..dc9ea4d9806 100644 --- a/src/devices/sound/lmc1992.h +++ b/src/devices/sound/lmc1992.h @@ -68,7 +68,7 @@ public: protected: // device-level overrides - virtual void device_start() override; + virtual void device_start() override ATTR_COLD; // internal callbacks virtual void sound_stream_update(sound_stream &stream, std::vector<read_stream_view> const &inputs, std::vector<write_stream_view> &outputs) override; |