summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/gotcha.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/gotcha.h')
-rw-r--r--src/mame/includes/gotcha.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/includes/gotcha.h b/src/mame/includes/gotcha.h
index 755759df85e..c053588e91c 100644
--- a/src/mame/includes/gotcha.h
+++ b/src/mame/includes/gotcha.h
@@ -47,9 +47,9 @@ public:
TILEMAP_MAPPER_MEMBER(gotcha_tilemap_scan);
TILE_GET_INFO_MEMBER(fg_get_tile_info);
TILE_GET_INFO_MEMBER(bg_get_tile_info);
- virtual void machine_start();
- virtual void machine_reset();
- virtual void video_start();
+ virtual void machine_start() override;
+ virtual void machine_reset() override;
+ virtual void video_start() override;
UINT32 screen_update_gotcha(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
inline void get_tile_info( tile_data &tileinfo, int tile_index ,UINT16 *vram, int color_offs);
required_device<cpu_device> m_maincpu;