summaryrefslogtreecommitdiffstats
path: root/src/mame/drivers/rgum.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/rgum.cpp')
-rw-r--r--src/mame/drivers/rgum.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mame/drivers/rgum.cpp b/src/mame/drivers/rgum.cpp
index 17033354017..145b5c64fc5 100644
--- a/src/mame/drivers/rgum.cpp
+++ b/src/mame/drivers/rgum.cpp
@@ -32,12 +32,12 @@ public:
m_gfxdecode(*this, "gfxdecode"),
m_palette(*this, "palette") { }
- required_shared_ptr<UINT8> m_vram;
- required_shared_ptr<UINT8> m_cram;
- UINT8 m_hbeat;
+ required_shared_ptr<uint8_t> m_vram;
+ required_shared_ptr<uint8_t> m_cram;
+ uint8_t m_hbeat;
DECLARE_CUSTOM_INPUT_MEMBER(rgum_heartbeat_r);
virtual void video_start() override;
- UINT32 screen_update_royalgum(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
+ uint32_t screen_update_royalgum(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 rgum_state::video_start()
{
}
-UINT32 rgum_state::screen_update_royalgum(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect)
+uint32_t rgum_state::screen_update_royalgum(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect)
{
int x,y,count;
gfx_element *gfx = m_gfxdecode->gfx(0);