diff options
Diffstat (limited to 'src/devices/bus/vcs_ctrl/wheel.h')
-rw-r--r-- | src/devices/bus/vcs_ctrl/wheel.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/bus/vcs_ctrl/wheel.h b/src/devices/bus/vcs_ctrl/wheel.h index 5ae4fc8a9d7..9cb8818144e 100644 --- a/src/devices/bus/vcs_ctrl/wheel.h +++ b/src/devices/bus/vcs_ctrl/wheel.h @@ -30,14 +30,14 @@ public: vcs_wheel_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; |