summaryrefslogtreecommitdiffstats
path: root/src/mame/includes/mosaic.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/mosaic.h')
-rw-r--r--src/mame/includes/mosaic.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/includes/mosaic.h b/src/mame/includes/mosaic.h
index 53deb5cf82f..c5e90219aff 100644
--- a/src/mame/includes/mosaic.h
+++ b/src/mame/includes/mosaic.h
@@ -21,8 +21,8 @@ public:
required_device<gfxdecode_device> m_gfxdecode;
/* memory pointers */
- required_shared_ptr<UINT8> m_fgvideoram;
- required_shared_ptr<UINT8> m_bgvideoram;
+ required_shared_ptr<uint8_t> m_fgvideoram;
+ required_shared_ptr<uint8_t> m_bgvideoram;
/* video-related */
tilemap_t *m_bg_tilemap;
@@ -45,5 +45,5 @@ public:
virtual void machine_reset() override;
virtual void video_start() override;
- UINT32 screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
+ uint32_t screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
};