diff options
Diffstat (limited to 'src/mame/includes/tunhunt.h')
-rw-r--r-- | src/mame/includes/tunhunt.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/mame/includes/tunhunt.h b/src/mame/includes/tunhunt.h index 5ac558adead..3fb59553d6e 100644 --- a/src/mame/includes/tunhunt.h +++ b/src/mame/includes/tunhunt.h @@ -19,12 +19,12 @@ public: required_device<screen_device> m_screen; required_device<palette_device> m_palette; - required_shared_ptr<UINT8> m_workram; - required_shared_ptr<UINT8> m_videoram; - required_shared_ptr<UINT8> m_spriteram; - required_shared_ptr<UINT8> m_generic_paletteram_8; + required_shared_ptr<uint8_t> m_workram; + required_shared_ptr<uint8_t> m_videoram; + required_shared_ptr<uint8_t> m_spriteram; + required_shared_ptr<uint8_t> m_generic_paletteram_8; - UINT8 m_control; + uint8_t m_control; tilemap_t *m_fg_tilemap; bitmap_ind16 m_tmpbitmap; @@ -42,7 +42,7 @@ public: virtual void video_start() override; DECLARE_PALETTE_INIT(tunhunt); - 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 set_pens(); void draw_motion_object(bitmap_ind16 &bitmap, const rectangle &cliprect); void draw_box(bitmap_ind16 &bitmap, const rectangle &cliprect); |