summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/apple/burgundy.h
diff options
context:
space:
mode:
author holub <andrei.holub@gmail.com>2024-09-25 12:35:29 -0400
committer GitHub <noreply@github.com>2024-09-26 02:35:29 +1000
commitbdc96c8ea5c910cf316cdc65e7e20a747029b51f (patch)
treea28df3e642d41cbf8a72f3fa68e55365b6c1fbce /src/mame/apple/burgundy.h
parent9ca21b386bf7e0801b32e096dcde1cc8609f7b0c (diff)
Added ATTR_COLD to common lifecycle methods for many files in src/mame. (#12789)
Diffstat (limited to 'src/mame/apple/burgundy.h')
-rw-r--r--src/mame/apple/burgundy.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/apple/burgundy.h b/src/mame/apple/burgundy.h
index ca40ab29443..69950fc952a 100644
--- a/src/mame/apple/burgundy.h
+++ b/src/mame/apple/burgundy.h
@@ -38,8 +38,8 @@ protected:
};
// 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 sound_stream_update(sound_stream &stream, std::vector<read_stream_view> const &inputs, std::vector<write_stream_view> &outputs) override;