summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/bosco.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/bosco.h')
-rw-r--r--src/mame/includes/bosco.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/mame/includes/bosco.h b/src/mame/includes/bosco.h
index 64bd73f7693..3d95c4322d0 100644
--- a/src/mame/includes/bosco.h
+++ b/src/mame/includes/bosco.h
@@ -10,24 +10,24 @@ public:
m_bosco_starcontrol(*this, "starcontrol"),
m_bosco_starblink(*this, "bosco_starblink") { }
- required_shared_ptr<UINT8> m_bosco_radarattr;
+ required_shared_ptr<uint8_t> m_bosco_radarattr;
- required_shared_ptr<UINT8> m_bosco_starcontrol;
- required_shared_ptr<UINT8> m_bosco_starblink;
+ required_shared_ptr<uint8_t> m_bosco_starcontrol;
+ required_shared_ptr<uint8_t> m_bosco_starblink;
- UINT8 *m_bosco_radarx;
- UINT8 *m_bosco_radary;
+ uint8_t *m_bosco_radarx;
+ uint8_t *m_bosco_radary;
- UINT8 *m_spriteram;
- UINT8 *m_spriteram2;
- UINT32 m_spriteram_size;
+ uint8_t *m_spriteram;
+ uint8_t *m_spriteram2;
+ uint32_t m_spriteram_size;
DECLARE_WRITE8_MEMBER(bosco_flip_screen_w);
TILEMAP_MAPPER_MEMBER(fg_tilemap_scan);
TILE_GET_INFO_MEMBER(bg_get_tile_info);
TILE_GET_INFO_MEMBER(fg_get_tile_info);
DECLARE_VIDEO_START(bosco);
DECLARE_PALETTE_INIT(bosco);
- UINT32 screen_update_bosco(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
+ uint32_t screen_update_bosco(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
void screen_eof_bosco(screen_device &screen, bool state);
inline void get_tile_info_bosco(tile_data &tileinfo,int tile_index,int ram_offs);