summaryrefslogtreecommitdiffstats
path: root/src/mame/includes/xyonix.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/xyonix.h')
-rw-r--r--src/mame/includes/xyonix.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/includes/xyonix.h b/src/mame/includes/xyonix.h
index 595e2585bf9..3fb92317de0 100644
--- a/src/mame/includes/xyonix.h
+++ b/src/mame/includes/xyonix.h
@@ -12,7 +12,7 @@ public:
required_device<cpu_device> m_maincpu;
required_device<gfxdecode_device> m_gfxdecode;
- required_shared_ptr<UINT8> m_vidram;
+ required_shared_ptr<uint8_t> m_vidram;
tilemap_t *m_tilemap;
@@ -30,7 +30,7 @@ public:
virtual void video_start() override;
TILE_GET_INFO_MEMBER(get_tile_info);
DECLARE_PALETTE_INIT(xyonix);
- UINT32 screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
+ uint32_t screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
void handle_coins(int coin);
};