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/video/aussiebyte.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/video/aussiebyte.cpp')
-rw-r--r-- | src/mame/video/aussiebyte.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/mame/video/aussiebyte.cpp b/src/mame/video/aussiebyte.cpp index 21c5c1754b6..0de8c58125f 100644 --- a/src/mame/video/aussiebyte.cpp +++ b/src/mame/video/aussiebyte.cpp @@ -100,7 +100,7 @@ WRITE8_MEMBER( aussiebyte_state::address_w ) WRITE8_MEMBER( aussiebyte_state::register_w ) { m_crtc->register_w( space, 0, data ); - UINT16 temp = m_alpha_address; + uint16_t temp = m_alpha_address; // Get transparent address if (m_video_index == 18) @@ -110,9 +110,9 @@ WRITE8_MEMBER( aussiebyte_state::register_w ) m_alpha_address = data | (temp & 0xff00); } -UINT8 aussiebyte_state::crt8002(UINT8 ac_ra, UINT8 ac_chr, UINT8 ac_attr, UINT16 ac_cnt, bool ac_curs) +uint8_t aussiebyte_state::crt8002(uint8_t ac_ra, uint8_t ac_chr, uint8_t ac_attr, uint16_t ac_cnt, bool ac_curs) { - UINT8 gfx = 0; + uint8_t gfx = 0; switch (ac_attr & 3) { case 0: // lores gfx @@ -166,9 +166,9 @@ UINT8 aussiebyte_state::crt8002(UINT8 ac_ra, UINT8 ac_chr, UINT8 ac_attr, UINT16 MC6845_UPDATE_ROW( aussiebyte_state::crtc_update_row ) { const rgb_t *palette = m_palette->palette()->entry_list_raw(); - UINT8 chr,gfx,attr; - UINT16 mem,x; - UINT32 *p = &bitmap.pix32(y); + uint8_t chr,gfx,attr; + uint16_t mem,x; + uint32_t *p = &bitmap.pix32(y); ra &= 15; m_cnt++; |