summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/dogfgt.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/dogfgt.h')
-rw-r--r--src/mame/includes/dogfgt.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mame/includes/dogfgt.h b/src/mame/includes/dogfgt.h
index c63ff99abc2..91f9213b953 100644
--- a/src/mame/includes/dogfgt.h
+++ b/src/mame/includes/dogfgt.h
@@ -20,14 +20,14 @@ public:
m_palette(*this, "palette") { }
/* memory pointers */
- required_shared_ptr<UINT8> m_bgvideoram;
- required_shared_ptr<UINT8> m_spriteram;
- required_shared_ptr<UINT8> m_sharedram;
+ required_shared_ptr<uint8_t> m_bgvideoram;
+ required_shared_ptr<uint8_t> m_spriteram;
+ required_shared_ptr<uint8_t> m_sharedram;
/* video-related */
bitmap_ind16 m_pixbitmap;
tilemap_t *m_bg_tilemap;
- std::unique_ptr<UINT8[]> m_bitmapram;
+ std::unique_ptr<uint8_t[]> m_bitmapram;
int m_bm_plane;
int m_pixcolor;
int m_scroll[4];
@@ -58,7 +58,7 @@ public:
virtual void machine_reset() override;
virtual void video_start() override;
DECLARE_PALETTE_INIT(dogfgt);
- UINT32 screen_update_dogfgt(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
+ uint32_t screen_update_dogfgt(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
void draw_sprites( bitmap_ind16 &bitmap,const rectangle &cliprect );
required_device<cpu_device> m_maincpu;
required_device<gfxdecode_device> m_gfxdecode;