diff options
author | 2016-10-22 13:13:17 +0200 | |
---|---|---|
committer | 2016-10-22 13:13:17 +0200 | |
commit | ddb290d5f615019c33c42b8d94e5a5254cabcf33 (patch) | |
tree | a70f688b0df3acd19da7b1151e5902e3c6af3fa5 /src/mame/drivers/icecold.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/mame/drivers/icecold.cpp')
-rw-r--r-- | src/mame/drivers/icecold.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mame/drivers/icecold.cpp b/src/mame/drivers/icecold.cpp index b3776f4948c..1d7a310ea32 100644 --- a/src/mame/drivers/icecold.cpp +++ b/src/mame/drivers/icecold.cpp @@ -46,10 +46,10 @@ public: required_device<ay8910_device> m_ay8910_1; required_device<pia6821_device> m_pia1; - UINT8 m_digit; // scanlines from i8279 - UINT8 m_sound_latch; // sound bus latch - UINT8 m_ay_ctrl; // ay controls line - UINT8 m_motors_ctrl; // motors control + uint8_t m_digit; // scanlines from i8279 + uint8_t m_sound_latch; // sound bus latch + uint8_t m_ay_ctrl; // ay controls line + uint8_t m_motors_ctrl; // motors control int m_sint; // SINT line int m_motenbl; // /MOTENBL line int m_ball_gate_sw; // ball gate switch @@ -174,7 +174,7 @@ void icecold_state::machine_reset() CUSTOM_INPUT_MEMBER( icecold_state::motors_limit_r ) { - UINT8 data = 0; + uint8_t data = 0; if (m_rmotor <= 1) data |= 0x01; // right down limit if (m_lmotor <= 1) data |= 0x04; // left down limit |