diff options
Diffstat (limited to 'src/mame/video/bionicc.cpp')
-rw-r--r-- | src/mame/video/bionicc.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mame/video/bionicc.cpp b/src/mame/video/bionicc.cpp index d776ea00a75..ccc95634958 100644 --- a/src/mame/video/bionicc.cpp +++ b/src/mame/video/bionicc.cpp @@ -100,11 +100,11 @@ void bionicc_state::video_start() PALETTE_DECODER_MEMBER( bionicc_state, RRRRGGGGBBBBIIII ) { - UINT8 bright = (raw & 0x0f); + uint8_t bright = (raw & 0x0f); - UINT8 r = ((raw >> 12) & 0x0f) * 0x11; - UINT8 g = ((raw >> 8) & 0x0f) * 0x11; - UINT8 b = ((raw >> 4) & 0x0f) * 0x11; + uint8_t r = ((raw >> 12) & 0x0f) * 0x11; + uint8_t g = ((raw >> 8) & 0x0f) * 0x11; + uint8_t b = ((raw >> 4) & 0x0f) * 0x11; if ((bright & 0x08) == 0) { @@ -187,7 +187,7 @@ WRITE16_MEMBER(bionicc_state::bionicc_gfxctrl_w) -UINT32 bionicc_state::screen_update_bionicc(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect) +uint32_t bionicc_state::screen_update_bionicc(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect) { bitmap.fill(m_palette->black_pen(), cliprect); m_fg_tilemap->draw(screen, bitmap, cliprect, 1 | TILEMAP_DRAW_LAYER1, 0); /* nothing in FRONT */ |