diff options
Diffstat (limited to 'src/mame/drivers/taitoair.cpp')
-rw-r--r-- | src/mame/drivers/taitoair.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/taitoair.cpp b/src/mame/drivers/taitoair.cpp index 74b6eef6ef9..98d84752749 100644 --- a/src/mame/drivers/taitoair.cpp +++ b/src/mame/drivers/taitoair.cpp @@ -272,7 +272,7 @@ WRITE16_MEMBER(taitoair_state::airsys_paletteram16_w)/* xxBBBBxRRRRxGGGG */ WRITE16_MEMBER(taitoair_state::airsys_gradram_w) { - UINT32 pen; + uint32_t pen; int r,g,b; //int pal_r,pal_g,pal_b; @@ -436,7 +436,7 @@ WRITE16_MEMBER(taitoair_state::dsp_test_z_w) READ16_MEMBER(taitoair_state::dsp_test_point_r) { - UINT16 r = 0; + uint16_t r = 0; if(m_dsp_test_x < -m_dsp_test_z) r |= 1; if(m_dsp_test_x > m_dsp_test_z) |