summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/b16.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/b16.cpp')
-rw-r--r--src/mame/drivers/b16.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/drivers/b16.cpp b/src/mame/drivers/b16.cpp
index 64904bff3c6..289aea6f228 100644
--- a/src/mame/drivers/b16.cpp
+++ b/src/mame/drivers/b16.cpp
@@ -44,13 +44,13 @@ public:
DECLARE_READ8_MEMBER(memory_read_byte);
DECLARE_WRITE8_MEMBER(memory_write_byte);
- virtual void video_start();
+ virtual void video_start() override;
UINT32 screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
mc6845_device *m_mc6845;
required_device<am9517a_device> m_dma8237;
- virtual void machine_start();
- virtual void machine_reset();
+ virtual void machine_start() override;
+ virtual void machine_reset() override;
required_device<cpu_device> m_maincpu;
required_device<gfxdecode_device> m_gfxdecode;
required_device<palette_device> m_palette;