summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/vt520.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/vt520.cpp')
-rw-r--r--src/mame/drivers/vt520.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/vt520.cpp b/src/mame/drivers/vt520.cpp
index 9f4b0216587..c65c7ebe5ee 100644
--- a/src/mame/drivers/vt520.cpp
+++ b/src/mame/drivers/vt520.cpp
@@ -21,8 +21,8 @@ public:
m_maincpu(*this, "maincpu") { }
DECLARE_READ8_MEMBER(vt520_some_r);
- virtual void machine_reset();
- virtual void video_start();
+ virtual void machine_reset() override;
+ virtual void video_start() override;
UINT32 screen_update_vt520(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
required_device<cpu_device> m_maincpu;
};