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/bus/vcs_ctrl/joystick.h | |
parent | e8516832e941e39fa1db11211249afa9f015e7bb (diff) |
override part 1 (nw)
Diffstat (limited to 'src/devices/bus/vcs_ctrl/joystick.h')
-rw-r--r-- | src/devices/bus/vcs_ctrl/joystick.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/bus/vcs_ctrl/joystick.h b/src/devices/bus/vcs_ctrl/joystick.h index 9e4d6eebed5..d43f6912dff 100644 --- a/src/devices/bus/vcs_ctrl/joystick.h +++ b/src/devices/bus/vcs_ctrl/joystick.h @@ -30,14 +30,14 @@ public: vcs_joystick_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock); // optional information overrides - virtual ioport_constructor device_input_ports() const; + virtual ioport_constructor device_input_ports() const override; protected: // device-level overrides - virtual void device_start(); + virtual void device_start() override; // device_vcs_control_port_interface overrides - virtual UINT8 vcs_joy_r(); + virtual UINT8 vcs_joy_r() override; private: required_ioport m_joy; |