summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/sys2900.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/sys2900.cpp')
-rw-r--r--src/mame/drivers/sys2900.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/drivers/sys2900.cpp b/src/mame/drivers/sys2900.cpp
index 9f71bb44bbb..848ec90ff58 100644
--- a/src/mame/drivers/sys2900.cpp
+++ b/src/mame/drivers/sys2900.cpp
@@ -52,13 +52,13 @@ public:
m_maincpu(*this, "maincpu") { }
DECLARE_DRIVER_INIT(sys2900);
- virtual void machine_reset();
- virtual void video_start();
+ virtual void machine_reset() override;
+ virtual void video_start() override;
UINT32 screen_update_sys2900(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
required_device<cpu_device> m_maincpu;
protected:
- virtual void device_timer(emu_timer &timer, device_timer_id id, int param, void *ptr);
+ virtual void device_timer(emu_timer &timer, device_timer_id id, int param, void *ptr) override;
};