summaryrefslogtreecommitdiffstats
path: root/src/mame/includes/portrait.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/portrait.h')
-rw-r--r--src/mame/includes/portrait.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mame/includes/portrait.h b/src/mame/includes/portrait.h
index 6d978f630fd..643b2c0847a 100644
--- a/src/mame/includes/portrait.h
+++ b/src/mame/includes/portrait.h
@@ -20,9 +20,9 @@ public:
required_device<palette_device> m_palette;
required_device<tms5200_device> m_tms;
- required_shared_ptr<UINT8> m_bgvideoram;
- required_shared_ptr<UINT8> m_fgvideoram;
- required_shared_ptr<UINT8> m_spriteram;
+ required_shared_ptr<uint8_t> m_bgvideoram;
+ required_shared_ptr<uint8_t> m_fgvideoram;
+ required_shared_ptr<uint8_t> m_spriteram;
int m_scroll;
tilemap_t *m_foreground;
@@ -40,7 +40,7 @@ public:
virtual void video_start() override;
DECLARE_PALETTE_INIT(portrait);
- UINT32 screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
- inline void get_tile_info( tile_data &tileinfo, int tile_index, const UINT8 *source );
+ uint32_t screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
+ inline void get_tile_info( tile_data &tileinfo, int tile_index, const uint8_t *source );
void draw_sprites(bitmap_ind16 &bitmap, const rectangle &cliprect);
};