summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/neogeo_ctrl/joystick.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/neogeo_ctrl/joystick.h')
-rw-r--r--src/devices/bus/neogeo_ctrl/joystick.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/devices/bus/neogeo_ctrl/joystick.h b/src/devices/bus/neogeo_ctrl/joystick.h
index 86cccd6fef8..c7f571f6d36 100644
--- a/src/devices/bus/neogeo_ctrl/joystick.h
+++ b/src/devices/bus/neogeo_ctrl/joystick.h
@@ -26,7 +26,7 @@ class neogeo_joystick_device : public device_t,
{
public:
// construction/destruction
- neogeo_joystick_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
+ neogeo_joystick_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;
@@ -37,8 +37,8 @@ protected:
virtual void device_reset() override;
// device_neogeo_control_port_interface overrides
- virtual UINT8 read_ctrl() override;
- virtual UINT8 read_start_sel() override;
+ virtual uint8_t read_ctrl() override;
+ virtual uint8_t read_start_sel() override;
private:
required_ioport m_joy;
@@ -53,7 +53,7 @@ class neogeo_joy_ac_device : public device_t,
{
public:
// construction/destruction
- neogeo_joy_ac_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
+ neogeo_joy_ac_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;