diff options
Diffstat (limited to 'src/devices/bus/vcs_ctrl/joybooster.cpp')
-rw-r--r-- | src/devices/bus/vcs_ctrl/joybooster.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/devices/bus/vcs_ctrl/joybooster.cpp b/src/devices/bus/vcs_ctrl/joybooster.cpp index e1fbfec7c90..af73a326e0f 100644 --- a/src/devices/bus/vcs_ctrl/joybooster.cpp +++ b/src/devices/bus/vcs_ctrl/joybooster.cpp @@ -56,7 +56,7 @@ ioport_constructor vcs_joystick_booster_device::device_input_ports() const // vcs_joystick_booster_device - constructor //------------------------------------------------- -vcs_joystick_booster_device::vcs_joystick_booster_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) : +vcs_joystick_booster_device::vcs_joystick_booster_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) : device_t(mconfig, VCS_JOYSTICK_BOOSTER, "Atari / CBM Digital joystick with Boostergrip", tag, owner, clock, "vcs_joystick_booster", __FILE__), device_vcs_control_port_interface(mconfig, *this), m_joy(*this, "JOY"), @@ -79,17 +79,17 @@ void vcs_joystick_booster_device::device_start() // vcs_joy_r - joystick read //------------------------------------------------- -UINT8 vcs_joystick_booster_device::vcs_joy_r() +uint8_t vcs_joystick_booster_device::vcs_joy_r() { return m_joy->read(); } -UINT8 vcs_joystick_booster_device::vcs_pot_x_r() +uint8_t vcs_joystick_booster_device::vcs_pot_x_r() { return m_potx->read(); } -UINT8 vcs_joystick_booster_device::vcs_pot_y_r() +uint8_t vcs_joystick_booster_device::vcs_pot_y_r() { return m_poty->read(); } |