summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/kiwako/mrjong.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/kiwako/mrjong.cpp')
-rw-r--r--src/mame/kiwako/mrjong.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/kiwako/mrjong.cpp b/src/mame/kiwako/mrjong.cpp
index 2c628b7de0a..a9f1d395948 100644
--- a/src/mame/kiwako/mrjong.cpp
+++ b/src/mame/kiwako/mrjong.cpp
@@ -73,7 +73,7 @@ public:
void mrjong(machine_config &config);
protected:
- virtual void video_start() override;
+ virtual void video_start() override ATTR_COLD;
private:
required_shared_ptr<uint8_t> m_videoram;
@@ -94,8 +94,8 @@ private:
uint32_t screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
void draw_sprites(bitmap_ind16 &bitmap, const rectangle &cliprect);
- void io_map(address_map &map);
- void program_map(address_map &map);
+ void io_map(address_map &map) ATTR_COLD;
+ void program_map(address_map &map) ATTR_COLD;
};