summaryrefslogtreecommitdiffstats
path: root/src/mame/drivers/summit.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/summit.cpp')
-rw-r--r--src/mame/drivers/summit.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/drivers/summit.cpp b/src/mame/drivers/summit.cpp
index 9058af8401e..4556bc83e5c 100644
--- a/src/mame/drivers/summit.cpp
+++ b/src/mame/drivers/summit.cpp
@@ -32,12 +32,12 @@ public:
m_gfxdecode(*this, "gfxdecode"),
m_palette(*this, "palette") { }
- required_shared_ptr<UINT8> m_attr;
- required_shared_ptr<UINT8> m_vram;
+ required_shared_ptr<uint8_t> m_attr;
+ required_shared_ptr<uint8_t> m_vram;
DECLARE_WRITE8_MEMBER(out_w);
virtual void video_start() override;
DECLARE_PALETTE_INIT(summit);
- UINT32 screen_update_summit(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
+ uint32_t screen_update_summit(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;
@@ -48,7 +48,7 @@ void summit_state::video_start()
{
}
-UINT32 summit_state::screen_update_summit(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect)
+uint32_t summit_state::screen_update_summit(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect)
{
gfx_element *gfx = m_gfxdecode->gfx(0);
int count = 0x0000;