summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/tecmo.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/tecmo.h')
-rw-r--r--src/mame/includes/tecmo.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/mame/includes/tecmo.h b/src/mame/includes/tecmo.h
index 75b9f2ec57e..7ba16367294 100644
--- a/src/mame/includes/tecmo.h
+++ b/src/mame/includes/tecmo.h
@@ -32,16 +32,16 @@ public:
required_device<tecmo_spr_device> m_sprgen;
required_device<generic_latch_8_device> m_soundlatch;
- required_shared_ptr<UINT8> m_txvideoram;
- required_shared_ptr<UINT8> m_fgvideoram;
- required_shared_ptr<UINT8> m_bgvideoram;
- required_shared_ptr<UINT8> m_spriteram;
+ required_shared_ptr<uint8_t> m_txvideoram;
+ required_shared_ptr<uint8_t> m_fgvideoram;
+ required_shared_ptr<uint8_t> m_bgvideoram;
+ required_shared_ptr<uint8_t> m_spriteram;
tilemap_t *m_tx_tilemap;
tilemap_t *m_fg_tilemap;
tilemap_t *m_bg_tilemap;
- UINT8 m_fgscroll[3];
- UINT8 m_bgscroll[3];
+ uint8_t m_fgscroll[3];
+ uint8_t m_bgscroll[3];
int m_adpcm_pos;
int m_adpcm_end;
int m_adpcm_data;
@@ -80,5 +80,5 @@ public:
virtual void machine_reset() override;
virtual void video_start() override;
- 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);
};