diff options
author | 2016-10-22 13:13:17 +0200 | |
---|---|---|
committer | 2016-10-22 13:13:17 +0200 | |
commit | ddb290d5f615019c33c42b8d94e5a5254cabcf33 (patch) | |
tree | a70f688b0df3acd19da7b1151e5902e3c6af3fa5 /src/devices/bus/neogeo_ctrl/dial.cpp | |
parent | 333bff8de64dfaeb98134000412796b4fdef970b (diff) |
NOTICE (TYPE NAME CONSOLIDATION)
Use standard uint64_t, uint32_t, uint16_t or uint8_t instead of UINT64, UINT32, UINT16 or UINT8
also use standard int64_t, int32_t, int16_t or int8_t instead of INT64, INT32, INT16 or INT8
Diffstat (limited to 'src/devices/bus/neogeo_ctrl/dial.cpp')
-rw-r--r-- | src/devices/bus/neogeo_ctrl/dial.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/devices/bus/neogeo_ctrl/dial.cpp b/src/devices/bus/neogeo_ctrl/dial.cpp index d73a7b6c8de..2885d9beb55 100644 --- a/src/devices/bus/neogeo_ctrl/dial.cpp +++ b/src/devices/bus/neogeo_ctrl/dial.cpp @@ -60,7 +60,7 @@ ioport_constructor neogeo_dial_device::device_input_ports() const // neogeo_dial_device - constructor //------------------------------------------------- -neogeo_dial_device::neogeo_dial_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) : +neogeo_dial_device::neogeo_dial_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) : device_t(mconfig, NEOGEO_DIAL, "SNK Neo Geo Dial Controller", tag, owner, clock, "neogeo_dial", __FILE__), device_neogeo_ctrl_edge_interface(mconfig, *this), m_joy1(*this, "JOY1"), @@ -97,7 +97,7 @@ void neogeo_dial_device::device_reset() READ8_MEMBER(neogeo_dial_device::in0_r) { - UINT8 res = 0; + uint8_t res = 0; if (m_ctrl_sel & 0x01) res = m_joy1->read(); else @@ -112,7 +112,7 @@ READ8_MEMBER(neogeo_dial_device::in0_r) READ8_MEMBER(neogeo_dial_device::in1_r) { - UINT8 res = 0; + uint8_t res = 0; if (m_ctrl_sel & 0x01) res = m_joy2->read(); else @@ -125,7 +125,7 @@ READ8_MEMBER(neogeo_dial_device::in1_r) // write_ctrlsel //------------------------------------------------- -void neogeo_dial_device::write_ctrlsel(UINT8 data) +void neogeo_dial_device::write_ctrlsel(uint8_t data) { m_ctrl_sel = data; } |