diff options
Diffstat (limited to 'src/mame/includes/wolfpack.h')
-rw-r--r-- | src/mame/includes/wolfpack.h | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/src/mame/includes/wolfpack.h b/src/mame/includes/wolfpack.h index e1d4628eb86..1f7e8ac7baa 100644 --- a/src/mame/includes/wolfpack.h +++ b/src/mame/includes/wolfpack.h @@ -27,7 +27,7 @@ public: { } // devices, pointers - required_shared_ptr<UINT8> m_alpha_num_ram; + required_shared_ptr<uint8_t> m_alpha_num_ram; required_device<cpu_device> m_maincpu; required_device<s14001a_device> m_s14001a; required_device<gfxdecode_device> m_gfxdecode; @@ -36,19 +36,19 @@ public: int m_collision; unsigned m_current_index; - UINT8 m_video_invert; - UINT8 m_ship_reflect; - UINT8 m_pt_pos_select; - UINT8 m_pt_horz; - UINT8 m_pt_pic; - UINT8 m_ship_h; - UINT8 m_torpedo_pic; - UINT8 m_ship_size; - UINT8 m_ship_h_precess; - UINT8 m_ship_pic; - UINT8 m_torpedo_h; - UINT8 m_torpedo_v; - std::unique_ptr<UINT8[]> m_LFSR; + uint8_t m_video_invert; + uint8_t m_ship_reflect; + uint8_t m_pt_pos_select; + uint8_t m_pt_horz; + uint8_t m_pt_pic; + uint8_t m_ship_h; + uint8_t m_torpedo_pic; + uint8_t m_ship_size; + uint8_t m_ship_h_precess; + uint8_t m_ship_pic; + uint8_t m_torpedo_h; + uint8_t m_torpedo_v; + std::unique_ptr<uint8_t[]> m_LFSR; bitmap_ind16 m_helper; DECLARE_READ8_MEMBER(wolfpack_misc_r); DECLARE_WRITE8_MEMBER(wolfpack_high_explo_w); @@ -82,7 +82,7 @@ public: virtual void machine_reset() override; virtual void video_start() override; DECLARE_PALETTE_INIT(wolfpack); - UINT32 screen_update_wolfpack(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect); + uint32_t screen_update_wolfpack(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect); void screen_eof_wolfpack(screen_device &screen, bool state); TIMER_CALLBACK_MEMBER(periodic_callback); void draw_ship(bitmap_ind16 &bitmap, const rectangle &cliprect); |