summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/kopunch.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/kopunch.h')
-rw-r--r--src/mame/includes/kopunch.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mame/includes/kopunch.h b/src/mame/includes/kopunch.h
index 3d0e6d0fce3..5078ce6d8fd 100644
--- a/src/mame/includes/kopunch.h
+++ b/src/mame/includes/kopunch.h
@@ -22,14 +22,14 @@ public:
required_device<gfxdecode_device> m_gfxdecode;
/* memory pointers */
- required_shared_ptr<UINT8> m_vram_fg;
- required_shared_ptr<UINT8> m_vram_bg;
+ required_shared_ptr<uint8_t> m_vram_fg;
+ required_shared_ptr<uint8_t> m_vram_bg;
/* video-related */
tilemap_t *m_bg_tilemap;
tilemap_t *m_fg_tilemap;
- UINT8 m_gfxbank;
- UINT8 m_scrollx;
+ uint8_t m_gfxbank;
+ uint8_t m_scrollx;
DECLARE_READ8_MEMBER(sensors1_r);
DECLARE_READ8_MEMBER(sensors2_r);
@@ -48,7 +48,7 @@ public:
TILE_GET_INFO_MEMBER(get_fg_tile_info);
TILE_GET_INFO_MEMBER(get_bg_tile_info);
DECLARE_PALETTE_INIT(kopunch);
- UINT32 screen_update_kopunch(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
+ uint32_t screen_update_kopunch(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
virtual void machine_start() override;
virtual void video_start() override;