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/sslam.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/sslam.cpp')
-rw-r--r-- | src/mame/drivers/sslam.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/drivers/sslam.cpp b/src/mame/drivers/sslam.cpp index 0a088944b43..2c7cd1ff4c8 100644 --- a/src/mame/drivers/sslam.cpp +++ b/src/mame/drivers/sslam.cpp @@ -102,7 +102,7 @@ Notes: The sequencing of the music tracks are handled in the second table below. */ -static const UINT8 sslam_snd_cmd[64] = +static const uint8_t sslam_snd_cmd[64] = { /*00*/ 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, /*08*/ 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x70, 0x71, @@ -125,7 +125,7 @@ static const UINT8 sslam_snd_cmd[64] = If the last byte is 0xff, the track should loop by restarting at the first column sample */ -static const UINT8 sslam_snd_loop[8][19] = +static const uint8_t sslam_snd_loop[8][19] = { /*NA*/ { 0x00, 0x00 }, /* Not a loop - just a parking position for stopping track playback */ /*60*/ { 0x60, 0x60, 0x61, 0x61, 0x60, 0x60, 0x61, 0x62, 0xff }, @@ -420,7 +420,7 @@ ADDRESS_MAP_END READ8_MEMBER(sslam_state::playmark_snd_command_r) { - UINT8 data = 0; + uint8_t data = 0; if ((m_oki_control & 0x38) == 0x30) { data = m_soundlatch->read(space,0); |