summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author MetalliC <0vetal0@gmail.com>2016-10-26 22:31:49 +0300
committer MetalliC <0vetal0@gmail.com>2016-10-26 22:31:49 +0300
commitc66146519fa4188157443c892022457341773bfd (patch)
treeb1906278484a83c32410586211ca60f3c64606dd
parente6d92ba43c9ce9de15af484ccf0326e2ec0024cf (diff)
fix build (nw)
-rw-r--r--src/mame/machine/atarixga.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/machine/atarixga.h b/src/mame/machine/atarixga.h
index ddd920c5a5c..d8e0b76c948 100644
--- a/src/mame/machine/atarixga.h
+++ b/src/mame/machine/atarixga.h
@@ -27,8 +27,8 @@ public:
virtual DECLARE_READ32_MEMBER(read) = 0;
protected:
- virtual void device_start() = 0;
- virtual void device_reset() = 0;
+ virtual void device_start() override = 0;
+ virtual void device_reset() override = 0;
std::unique_ptr<uint16_t[]> m_ram; // CY7C185-45PC, only 16-Kbit used
};