diff options
Diffstat (limited to 'src/mame/includes/suprslam.h')
-rw-r--r-- | src/mame/includes/suprslam.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/mame/includes/suprslam.h b/src/mame/includes/suprslam.h index 54bfb91c663..8f9a664ffcc 100644 --- a/src/mame/includes/suprslam.h +++ b/src/mame/includes/suprslam.h @@ -29,19 +29,19 @@ public: m_soundlatch(*this, "soundlatch") { } /* memory pointers */ - required_shared_ptr<UINT16> m_screen_videoram; - required_shared_ptr<UINT16> m_bg_videoram; - required_shared_ptr<UINT16> m_sp_videoram; - required_shared_ptr<UINT16> m_spriteram; - required_shared_ptr<UINT16> m_spr_ctrl; - required_shared_ptr<UINT16> m_screen_vregs; + required_shared_ptr<uint16_t> m_screen_videoram; + required_shared_ptr<uint16_t> m_bg_videoram; + required_shared_ptr<uint16_t> m_sp_videoram; + required_shared_ptr<uint16_t> m_spriteram; + required_shared_ptr<uint16_t> m_spr_ctrl; + required_shared_ptr<uint16_t> m_screen_vregs; /* video-related */ tilemap_t *m_screen_tilemap; tilemap_t *m_bg_tilemap; - UINT16 m_screen_bank; - UINT16 m_bg_bank; - UINT32 suprslam_tile_callback( UINT32 code ); + uint16_t m_screen_bank; + uint16_t m_bg_bank; + uint32_t suprslam_tile_callback( uint32_t code ); /* misc */ int m_pending_command; @@ -66,5 +66,5 @@ public: virtual void machine_start() override; virtual void machine_reset() override; virtual void video_start() override; - UINT32 screen_update_suprslam(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect); + uint32_t screen_update_suprslam(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect); }; |