summaryrefslogtreecommitdiffstats
path: root/src/mame/video/firetrk.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/firetrk.cpp')
-rw-r--r--src/mame/video/firetrk.cpp26
1 files changed, 13 insertions, 13 deletions
diff --git a/src/mame/video/firetrk.cpp b/src/mame/video/firetrk.cpp
index 966eb32d3c3..080e574515c 100644
--- a/src/mame/video/firetrk.cpp
+++ b/src/mame/video/firetrk.cpp
@@ -16,7 +16,7 @@ PALETTE_INIT_MEMBER(firetrk_state, firetrk)
{
int i;
- static const UINT8 colortable_source[] =
+ static const uint8_t colortable_source[] =
{
0, 0, 1, 0,
2, 0, 3, 0,
@@ -38,7 +38,7 @@ PALETTE_INIT_MEMBER(firetrk_state, firetrk)
for (i = 0; i < ARRAY_LENGTH(colortable_source); i++)
{
- UINT8 color = colortable_source[i];
+ uint8_t color = colortable_source[i];
if (color == 1)
m_color1_mask |= 1 << i;
@@ -50,7 +50,7 @@ PALETTE_INIT_MEMBER(firetrk_state, firetrk)
}
-void firetrk_state::prom_to_palette(int number, UINT8 val)
+void firetrk_state::prom_to_palette(int number, uint8_t val)
{
m_palette->set_pen_color(number, rgb_t(pal1bit(val >> 2), pal1bit(val >> 1), pal1bit(val >> 0)));
}
@@ -58,10 +58,10 @@ void firetrk_state::prom_to_palette(int number, UINT8 val)
PALETTE_INIT_MEMBER(firetrk_state,montecar)
{
- const UINT8 *color_prom = memregion("proms")->base();
+ const uint8_t *color_prom = memregion("proms")->base();
int i;
- static const UINT8 colortable_source[] =
+ static const uint8_t colortable_source[] =
{
0x00, 0x00, 0x00, 0x01,
0x00, 0x02, 0x00, 0x03,
@@ -98,7 +98,7 @@ PALETTE_INIT_MEMBER(firetrk_state,montecar)
for (i = 0; i < ARRAY_LENGTH(colortable_source); i++)
{
- UINT8 color = colortable_source[i];
+ uint8_t color = colortable_source[i];
if (color == 1)
m_color1_mask |= 1 << i;
@@ -157,7 +157,7 @@ TILE_GET_INFO_MEMBER(firetrk_state::montecar_get_tile_info1)
TILE_GET_INFO_MEMBER(firetrk_state::firetrk_get_tile_info2)
{
- UINT8 code = m_playfield_ram[tile_index] & 0x3f;
+ uint8_t code = m_playfield_ram[tile_index] & 0x3f;
int color = 0;
/* palette 1 for crash and palette 2 for skid */
@@ -173,7 +173,7 @@ TILE_GET_INFO_MEMBER(firetrk_state::firetrk_get_tile_info2)
TILE_GET_INFO_MEMBER(firetrk_state::superbug_get_tile_info2)
{
- UINT8 code = m_playfield_ram[tile_index] & 0x3f;
+ uint8_t code = m_playfield_ram[tile_index] & 0x3f;
int color = 0;
/* palette 1 for crash and palette 2 for skid */
@@ -189,7 +189,7 @@ TILE_GET_INFO_MEMBER(firetrk_state::superbug_get_tile_info2)
TILE_GET_INFO_MEMBER(firetrk_state::montecar_get_tile_info2)
{
- UINT8 code = m_playfield_ram[tile_index];
+ uint8_t code = m_playfield_ram[tile_index];
int color = 0;
/* palette 1 for crash and palette 2 for skid */
@@ -309,7 +309,7 @@ void firetrk_state::montecar_draw_car(bitmap_ind16 &bitmap, const rectangle &cli
}
-void firetrk_state::draw_text(bitmap_ind16 &bitmap, const rectangle &cliprect, UINT8 *alpha_ram,
+void firetrk_state::draw_text(bitmap_ind16 &bitmap, const rectangle &cliprect, uint8_t *alpha_ram,
int x, int count, int height)
{
int i;
@@ -338,7 +338,7 @@ void firetrk_state::check_collision(int which)
}
-UINT32 firetrk_state::screen_update_firetrk(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect)
+uint32_t firetrk_state::screen_update_firetrk(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect)
{
machine().tilemap().mark_all_dirty();
m_tilemap1->set_scrollx(0, *m_scroll_x - 37);
@@ -372,7 +372,7 @@ UINT32 firetrk_state::screen_update_firetrk(screen_device &screen, bitmap_ind16
}
-UINT32 firetrk_state::screen_update_superbug(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect)
+uint32_t firetrk_state::screen_update_superbug(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect)
{
machine().tilemap().mark_all_dirty();
m_tilemap1->set_scrollx(0, *m_scroll_x - 37);
@@ -401,7 +401,7 @@ UINT32 firetrk_state::screen_update_superbug(screen_device &screen, bitmap_ind16
}
-UINT32 firetrk_state::screen_update_montecar(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect)
+uint32_t firetrk_state::screen_update_montecar(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect)
{
machine().tilemap().mark_all_dirty();
m_tilemap1->set_scrollx(0, *m_scroll_x - 37);