diff options
Diffstat (limited to 'src/mame/audio/zaxxon.cpp')
-rw-r--r-- | src/mame/audio/zaxxon.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mame/audio/zaxxon.cpp b/src/mame/audio/zaxxon.cpp index 9fc5387f639..0c0d194c877 100644 --- a/src/mame/audio/zaxxon.cpp +++ b/src/mame/audio/zaxxon.cpp @@ -109,7 +109,7 @@ MACHINE_CONFIG_END WRITE8_MEMBER(zaxxon_state::zaxxon_sound_a_w) { - UINT8 diff = data ^ m_sound_state[0]; + uint8_t diff = data ^ m_sound_state[0]; m_sound_state[0] = data; /* PLAYER SHIP A/B: volume */ @@ -143,7 +143,7 @@ WRITE8_MEMBER(zaxxon_state::zaxxon_sound_a_w) WRITE8_MEMBER(zaxxon_state::zaxxon_sound_b_w) { - UINT8 diff = data ^ m_sound_state[1]; + uint8_t diff = data ^ m_sound_state[1]; m_sound_state[1] = data; /* S-EXP: channel 4 */ @@ -159,7 +159,7 @@ WRITE8_MEMBER(zaxxon_state::zaxxon_sound_b_w) WRITE8_MEMBER(zaxxon_state::zaxxon_sound_c_w) { - UINT8 diff = data ^ m_sound_state[2]; + uint8_t diff = data ^ m_sound_state[2]; m_sound_state[2] = data; /* SHOT: channel 7 */ @@ -209,7 +209,7 @@ MACHINE_CONFIG_END WRITE8_MEMBER(zaxxon_state::congo_sound_b_w) { - UINT8 diff = data ^ m_sound_state[1]; + uint8_t diff = data ^ m_sound_state[1]; m_sound_state[1] = data; /* bit 7 = mute */ @@ -221,7 +221,7 @@ WRITE8_MEMBER(zaxxon_state::congo_sound_b_w) WRITE8_MEMBER(zaxxon_state::congo_sound_c_w) { - UINT8 diff = data ^ m_sound_state[2]; + uint8_t diff = data ^ m_sound_state[2]; m_sound_state[2] = data; /* BASS DRUM: channel 1 */ |