summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/gumbo.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/gumbo.h')
-rw-r--r--src/mame/includes/gumbo.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/includes/gumbo.h b/src/mame/includes/gumbo.h
index d95628aacfb..f09488d11ed 100644
--- a/src/mame/includes/gumbo.h
+++ b/src/mame/includes/gumbo.h
@@ -17,8 +17,8 @@ public:
m_gfxdecode(*this, "gfxdecode") { }
/* memory pointers */
- required_shared_ptr<UINT16> m_bg_videoram;
- required_shared_ptr<UINT16> m_fg_videoram;
+ required_shared_ptr<uint16_t> m_bg_videoram;
+ required_shared_ptr<uint16_t> m_fg_videoram;
/* video-related */
tilemap_t *m_bg_tilemap;
@@ -28,7 +28,7 @@ public:
TILE_GET_INFO_MEMBER(get_gumbo_bg_tile_info);
TILE_GET_INFO_MEMBER(get_gumbo_fg_tile_info);
virtual void video_start() override;
- UINT32 screen_update_gumbo(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
+ uint32_t screen_update_gumbo(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
required_device<cpu_device> m_maincpu;
required_device<gfxdecode_device> m_gfxdecode;
};