diff options
Diffstat (limited to 'src/devices/bus/vcs_ctrl/wheel.h')
-rw-r--r-- | src/devices/bus/vcs_ctrl/wheel.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/devices/bus/vcs_ctrl/wheel.h b/src/devices/bus/vcs_ctrl/wheel.h index 369afe7c614..6981eaa6b63 100644 --- a/src/devices/bus/vcs_ctrl/wheel.h +++ b/src/devices/bus/vcs_ctrl/wheel.h @@ -28,15 +28,15 @@ public: // construction/destruction vcs_wheel_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock); - // optional information overrides - virtual ioport_constructor device_input_ports() const override; + // device_vcs_control_port_interface overrides + virtual uint8_t vcs_joy_r() override; protected: // device-level overrides - virtual void device_start() override; + virtual void device_start() override ATTR_COLD; - // device_vcs_control_port_interface overrides - virtual uint8_t vcs_joy_r() override; + // optional information overrides + virtual ioport_constructor device_input_ports() const override ATTR_COLD; private: required_ioport m_joy; |