summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/sanremo.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/sanremo.cpp')
-rw-r--r--src/mame/drivers/sanremo.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/drivers/sanremo.cpp b/src/mame/drivers/sanremo.cpp
index 06bd4c0e5a9..ed4706e0571 100644
--- a/src/mame/drivers/sanremo.cpp
+++ b/src/mame/drivers/sanremo.cpp
@@ -114,9 +114,9 @@ public:
m_maincpu(*this, "maincpu"),
m_gfxdecode(*this, "gfxdecode") { }
- required_shared_ptr<UINT8> m_videoram;
+ required_shared_ptr<uint8_t> m_videoram;
- UINT8 m_attrram[0x800];
+ uint8_t m_attrram[0x800];
tilemap_t *m_bg_tilemap;
DECLARE_WRITE8_MEMBER(sanremo_videoram_w);
TILE_GET_INFO_MEMBER(get_sanremo_tile_info);
@@ -125,7 +125,7 @@ public:
int banksel;
virtual void video_start() override;
DECLARE_PALETTE_INIT(sanremo);
- UINT32 screen_update_sanremo(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
+ uint32_t screen_update_sanremo(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
required_device<cpu_device> m_maincpu;
required_device<gfxdecode_device> m_gfxdecode;
};
@@ -157,7 +157,7 @@ void sanremo_state::video_start()
}
-UINT32 sanremo_state::screen_update_sanremo(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect)
+uint32_t sanremo_state::screen_update_sanremo(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect)
{
m_bg_tilemap->draw(screen, bitmap, cliprect, 0, 0);
return 0;