diff options
Diffstat (limited to 'src/mame/video/blstroid.cpp')
-rw-r--r-- | src/mame/video/blstroid.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/video/blstroid.cpp b/src/mame/video/blstroid.cpp index abee6d8ef4c..d69d6043fee 100644 --- a/src/mame/video/blstroid.cpp +++ b/src/mame/video/blstroid.cpp @@ -21,7 +21,7 @@ TILE_GET_INFO_MEMBER(blstroid_state::get_playfield_tile_info) { - UINT16 data = tilemap.basemem_read(tile_index); + uint16_t data = tilemap.basemem_read(tile_index); int code = data & 0x1fff; int color = (data >> 13) & 0x07; SET_TILE_INFO_MEMBER(0, code, color, 0); @@ -136,7 +136,7 @@ void blstroid_state::scanline_update(screen_device &screen, int scanline) * *************************************/ -UINT32 blstroid_state::screen_update_blstroid(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect) +uint32_t blstroid_state::screen_update_blstroid(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect) { // start drawing m_mob->draw_async(cliprect); @@ -149,8 +149,8 @@ UINT32 blstroid_state::screen_update_blstroid(screen_device &screen, bitmap_ind1 for (const sparse_dirty_rect *rect = m_mob->first_dirty_rect(cliprect); rect != nullptr; rect = rect->next()) for (int y = rect->min_y; y <= rect->max_y; y++) { - UINT16 *mo = &mobitmap.pix16(y); - UINT16 *pf = &bitmap.pix16(y); + uint16_t *mo = &mobitmap.pix16(y); + uint16_t *pf = &bitmap.pix16(y); for (int x = rect->min_x; x <= rect->max_x; x++) if (mo[x] != 0xffff) { |