summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/sslam.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/sslam.cpp')
-rw-r--r--src/mame/drivers/sslam.cpp6
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);