summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/buffer.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/buffer.h')
-rw-r--r--src/devices/machine/buffer.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/machine/buffer.h b/src/devices/machine/buffer.h
index cab1b9914f4..7c719c918af 100644
--- a/src/devices/machine/buffer.h
+++ b/src/devices/machine/buffer.h
@@ -21,7 +21,7 @@ public:
DECLARE_WRITE_LINE_MEMBER(write_bit7) { if (state) m_input_data |= 0x80; else m_input_data &= ~0x80; }
protected:
- virtual void device_start();
+ virtual void device_start() override;
UINT8 m_input_data;
};