diff options
author | 2015-12-05 20:32:27 +0100 | |
---|---|---|
committer | 2015-12-05 21:20:53 +0100 | |
commit | 1c4865d66ff88a6891ebdde4580c3d61ee46ffa2 (patch) | |
tree | 268936fc8389b1a2adb8bfc3fa3006f12a4ccc95 /src/devices/machine/buffer.h | |
parent | e8516832e941e39fa1db11211249afa9f015e7bb (diff) |
override part 1 (nw)
Diffstat (limited to 'src/devices/machine/buffer.h')
-rw-r--r-- | src/devices/machine/buffer.h | 2 |
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; }; |