summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/mk85.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/mk85.cpp')
-rw-r--r--src/mame/drivers/mk85.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/mk85.cpp b/src/mame/drivers/mk85.cpp
index c84df818ed9..5ab8197a55a 100644
--- a/src/mame/drivers/mk85.cpp
+++ b/src/mame/drivers/mk85.cpp
@@ -30,8 +30,8 @@ public:
: driver_device(mconfig, type, tag) ,
m_maincpu(*this, "maincpu") { }
- virtual void machine_reset();
- virtual void video_start();
+ virtual void machine_reset() override;
+ virtual void video_start() override;
UINT32 screen_update_mk85(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
required_device<cpu_device> m_maincpu;
};