diff options
Diffstat (limited to 'src/mame/drivers/fresh.cpp')
-rw-r--r-- | src/mame/drivers/fresh.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/mame/drivers/fresh.cpp b/src/mame/drivers/fresh.cpp index 4bc828222ef..cbedc623176 100644 --- a/src/mame/drivers/fresh.cpp +++ b/src/mame/drivers/fresh.cpp @@ -44,10 +44,10 @@ public: tilemap_t *m_bg_tilemap; tilemap_t *m_bg_2_tilemap; - required_shared_ptr<UINT16> m_bg_videoram; - required_shared_ptr<UINT16> m_bg_2_videoram; - required_shared_ptr<UINT16> m_attr_videoram; - required_shared_ptr<UINT16> m_attr_2_videoram; + required_shared_ptr<uint16_t> m_bg_videoram; + required_shared_ptr<uint16_t> m_bg_2_videoram; + required_shared_ptr<uint16_t> m_attr_videoram; + required_shared_ptr<uint16_t> m_attr_2_videoram; DECLARE_WRITE16_MEMBER(fresh_bg_videoram_w); @@ -58,7 +58,7 @@ public: TILE_GET_INFO_MEMBER(get_fresh_bg_2_tile_info); - UINT16 m_d30000_value; + uint16_t m_d30000_value; DECLARE_WRITE16_MEMBER( d30000_write ) { @@ -95,7 +95,7 @@ public: virtual void video_start() override; - UINT32 screen_update_fresh(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect); + uint32_t screen_update_fresh(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect); required_device<cpu_device> m_maincpu; required_device<gfxdecode_device> m_gfxdecode; required_device<palette_device> m_palette; @@ -156,7 +156,7 @@ void fresh_state::video_start() m_bg_tilemap->set_transparent_pen(255); } -UINT32 fresh_state::screen_update_fresh(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect) +uint32_t fresh_state::screen_update_fresh(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect) { m_bg_2_tilemap->draw(screen, bitmap, cliprect, 0, 0); m_bg_tilemap->draw(screen, bitmap, cliprect, 0, 0); |