summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/triplhnt.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/triplhnt.h')
-rw-r--r--src/mame/includes/triplhnt.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/mame/includes/triplhnt.h b/src/mame/includes/triplhnt.h
index 9e98da96c11..c8d99f3962d 100644
--- a/src/mame/includes/triplhnt.h
+++ b/src/mame/includes/triplhnt.h
@@ -42,16 +42,16 @@ public:
m_screen(*this, "screen"),
m_palette(*this, "palette") { }
- UINT8 m_cmos[16];
- UINT8 m_da_latch;
- UINT8 m_misc_flags;
- UINT8 m_cmos_latch;
- UINT8 m_hit_code;
- required_shared_ptr<UINT8> m_playfield_ram;
- required_shared_ptr<UINT8> m_vpos_ram;
- required_shared_ptr<UINT8> m_hpos_ram;
- required_shared_ptr<UINT8> m_orga_ram;
- required_shared_ptr<UINT8> m_code_ram;
+ uint8_t m_cmos[16];
+ uint8_t m_da_latch;
+ uint8_t m_misc_flags;
+ uint8_t m_cmos_latch;
+ uint8_t m_hit_code;
+ required_shared_ptr<uint8_t> m_playfield_ram;
+ required_shared_ptr<uint8_t> m_vpos_ram;
+ required_shared_ptr<uint8_t> m_hpos_ram;
+ required_shared_ptr<uint8_t> m_orga_ram;
+ required_shared_ptr<uint8_t> m_code_ram;
int m_sprite_zoom;
int m_sprite_bank;
bitmap_ind16 m_helper;
@@ -65,7 +65,7 @@ public:
TILE_GET_INFO_MEMBER(get_tile_info);
virtual void video_start() override;
DECLARE_PALETTE_INIT(triplhnt);
- UINT32 screen_update_triplhnt(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
+ uint32_t screen_update_triplhnt(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
void draw_sprites(bitmap_ind16 &bitmap, const rectangle &cliprect);
void triplhnt_set_collision(int code);
void triplhnt_update_misc(address_space &space, int offset);