summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/vcs_ctrl/joybooster.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/vcs_ctrl/joybooster.h')
-rw-r--r--src/devices/bus/vcs_ctrl/joybooster.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/devices/bus/vcs_ctrl/joybooster.h b/src/devices/bus/vcs_ctrl/joybooster.h
index d04be025ab9..55455dcf92e 100644
--- a/src/devices/bus/vcs_ctrl/joybooster.h
+++ b/src/devices/bus/vcs_ctrl/joybooster.h
@@ -28,7 +28,7 @@ class vcs_joystick_booster_device : public device_t,
{
public:
// construction/destruction
- vcs_joystick_booster_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
+ vcs_joystick_booster_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;
@@ -38,9 +38,9 @@ protected:
virtual void device_start() override;
// device_vcs_control_port_interface overrides
- virtual UINT8 vcs_joy_r() override;
- virtual UINT8 vcs_pot_x_r() override;
- virtual UINT8 vcs_pot_y_r() override;
+ virtual uint8_t vcs_joy_r() override;
+ virtual uint8_t vcs_pot_x_r() override;
+ virtual uint8_t vcs_pot_y_r() override;
virtual bool has_pot_x() override { return true; }
virtual bool has_pot_y() override { return true; }