summaryrefslogtreecommitdiffstats
path: root/src/mame/video/xyonix.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/xyonix.cpp')
-rw-r--r--src/mame/video/xyonix.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/video/xyonix.cpp b/src/mame/video/xyonix.cpp
index 8bfb0be2c9f..eef9e32982d 100644
--- a/src/mame/video/xyonix.cpp
+++ b/src/mame/video/xyonix.cpp
@@ -5,7 +5,7 @@
PALETTE_INIT_MEMBER(xyonix_state, xyonix)
{
- const UINT8 *color_prom = memregion("proms")->base();
+ const uint8_t *color_prom = memregion("proms")->base();
int i;
@@ -54,7 +54,7 @@ void xyonix_state::video_start()
m_tilemap = &machine().tilemap().create(*m_gfxdecode, tilemap_get_info_delegate(FUNC(xyonix_state::get_tile_info),this), TILEMAP_SCAN_ROWS, 4, 8, 80, 32);
}
-UINT32 xyonix_state::screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect)
+uint32_t xyonix_state::screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect)
{
m_tilemap->draw(screen, bitmap, cliprect, 0, 0);
return 0;