summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/astrocde.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/astrocde.cpp')
-rw-r--r--src/mame/drivers/astrocde.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/mame/drivers/astrocde.cpp b/src/mame/drivers/astrocde.cpp
index a100df2e52e..3744c2f389e 100644
--- a/src/mame/drivers/astrocde.cpp
+++ b/src/mame/drivers/astrocde.cpp
@@ -185,7 +185,7 @@ WRITE8_MEMBER(astrocde_state::seawolf2_lamps_w)
WRITE8_MEMBER(astrocde_state::seawolf2_sound_1_w)// Port 40
{
- UINT8 rising_bits = data & ~m_port_1_last;
+ uint8_t rising_bits = data & ~m_port_1_last;
m_port_1_last = data;
if (rising_bits & 0x01) m_samples->start(1, 1); /* Left Torpedo */
@@ -199,7 +199,7 @@ WRITE8_MEMBER(astrocde_state::seawolf2_sound_1_w)// Port 40
WRITE8_MEMBER(astrocde_state::seawolf2_sound_2_w)// Port 41
{
- UINT8 rising_bits = data & ~m_port_2_last;
+ uint8_t rising_bits = data & ~m_port_2_last;
m_port_2_last = data;
m_samples->set_volume(0, (data & 0x80) ? 1.0 : 0.0);
@@ -276,7 +276,7 @@ READ8_MEMBER(astrocde_state::spacezap_io_r)
READ8_MEMBER(astrocde_state::wow_io_r)
{
- UINT8 data = (offset >> 8) & 1;
+ uint8_t data = (offset >> 8) & 1;
switch ((offset >> 9) & 7)
{
@@ -301,7 +301,7 @@ READ8_MEMBER(astrocde_state::wow_io_r)
READ8_MEMBER(astrocde_state::gorf_io_1_r)
{
- UINT8 data = (offset >> 8) & 1;
+ uint8_t data = (offset >> 8) & 1;
switch ((offset >> 9) & 7)
{
@@ -327,7 +327,7 @@ READ8_MEMBER(astrocde_state::gorf_io_1_r)
READ8_MEMBER(astrocde_state::gorf_io_2_r)
{
- UINT8 data = (offset >> 8) & 1;
+ uint8_t data = (offset >> 8) & 1;
switch ((offset >> 9) & 7)
{
@@ -353,7 +353,7 @@ READ8_MEMBER(astrocde_state::gorf_io_2_r)
READ8_MEMBER(astrocde_state::robby_io_r)
{
- UINT8 data = (offset >> 8) & 1;
+ uint8_t data = (offset >> 8) & 1;
switch ((offset >> 9) & 7)
{