diff options
Diffstat (limited to 'src/mame/includes/wc90.h')
-rw-r--r-- | src/mame/includes/wc90.h | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/src/mame/includes/wc90.h b/src/mame/includes/wc90.h index 0fafbf92886..01c1ed3eeae 100644 --- a/src/mame/includes/wc90.h +++ b/src/mame/includes/wc90.h @@ -41,22 +41,22 @@ public: required_device<tecmo_spr_device> m_sprgen; required_device<generic_latch_8_device> m_soundlatch; - required_shared_ptr<UINT8> m_fgvideoram; - required_shared_ptr<UINT8> m_bgvideoram; - required_shared_ptr<UINT8> m_txvideoram; - required_shared_ptr<UINT8> m_scroll0xlo; - required_shared_ptr<UINT8> m_scroll0xhi; - required_shared_ptr<UINT8> m_scroll1xlo; - required_shared_ptr<UINT8> m_scroll1xhi; - required_shared_ptr<UINT8> m_scroll2xlo; - required_shared_ptr<UINT8> m_scroll2xhi; - required_shared_ptr<UINT8> m_scroll0ylo; - required_shared_ptr<UINT8> m_scroll0yhi; - required_shared_ptr<UINT8> m_scroll1ylo; - required_shared_ptr<UINT8> m_scroll1yhi; - required_shared_ptr<UINT8> m_scroll2ylo; - required_shared_ptr<UINT8> m_scroll2yhi; - required_shared_ptr<UINT8> m_spriteram; + required_shared_ptr<uint8_t> m_fgvideoram; + required_shared_ptr<uint8_t> m_bgvideoram; + required_shared_ptr<uint8_t> m_txvideoram; + required_shared_ptr<uint8_t> m_scroll0xlo; + required_shared_ptr<uint8_t> m_scroll0xhi; + required_shared_ptr<uint8_t> m_scroll1xlo; + required_shared_ptr<uint8_t> m_scroll1xhi; + required_shared_ptr<uint8_t> m_scroll2xlo; + required_shared_ptr<uint8_t> m_scroll2xhi; + required_shared_ptr<uint8_t> m_scroll0ylo; + required_shared_ptr<uint8_t> m_scroll0yhi; + required_shared_ptr<uint8_t> m_scroll1ylo; + required_shared_ptr<uint8_t> m_scroll1yhi; + required_shared_ptr<uint8_t> m_scroll2ylo; + required_shared_ptr<uint8_t> m_scroll2yhi; + required_shared_ptr<uint8_t> m_spriteram; tilemap_t *m_tx_tilemap; tilemap_t *m_fg_tilemap; @@ -79,5 +79,5 @@ public: virtual void video_start() override; DECLARE_VIDEO_START(wc90t); - 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); }; |