summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/gametron/gatron.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/gametron/gatron.cpp')
-rw-r--r--src/mame/gametron/gatron.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/gametron/gatron.cpp b/src/mame/gametron/gatron.cpp
index ddd7728bc7f..4cea174cc3c 100644
--- a/src/mame/gametron/gatron.cpp
+++ b/src/mame/gametron/gatron.cpp
@@ -355,7 +355,7 @@ public:
void gat(machine_config &config);
protected:
- virtual void video_start() override;
+ virtual void video_start() override ATTR_COLD;
private:
required_shared_ptr<uint8_t> m_videoram;
@@ -371,8 +371,8 @@ private:
uint32_t screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
- void prg_map(address_map &map);
- void port_map(address_map &map);
+ void prg_map(address_map &map) ATTR_COLD;
+ void port_map(address_map &map) ATTR_COLD;
};