summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/mcatadv.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/mcatadv.h')
-rw-r--r--src/mame/includes/mcatadv.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/mame/includes/mcatadv.h b/src/mame/includes/mcatadv.h
index cda3058f832..5c779e02ed0 100644
--- a/src/mame/includes/mcatadv.h
+++ b/src/mame/includes/mcatadv.h
@@ -23,14 +23,14 @@ public:
m_soundlatch(*this, "soundlatch") { }
/* memory pointers */
- required_shared_ptr<UINT16> m_videoram1;
- required_shared_ptr<UINT16> m_videoram2;
- required_shared_ptr<UINT16> m_scroll1;
- required_shared_ptr<UINT16> m_scroll2;
- required_shared_ptr<UINT16> m_spriteram;
- std::unique_ptr<UINT16[]> m_spriteram_old;
- required_shared_ptr<UINT16> m_vidregs;
- std::unique_ptr<UINT16[]> m_vidregs_old;
+ required_shared_ptr<uint16_t> m_videoram1;
+ required_shared_ptr<uint16_t> m_videoram2;
+ required_shared_ptr<uint16_t> m_scroll1;
+ required_shared_ptr<uint16_t> m_scroll2;
+ required_shared_ptr<uint16_t> m_spriteram;
+ std::unique_ptr<uint16_t[]> m_spriteram_old;
+ required_shared_ptr<uint16_t> m_vidregs;
+ std::unique_ptr<uint16_t[]> m_vidregs_old;
/* video-related */
tilemap_t *m_tilemap1;
@@ -55,8 +55,8 @@ public:
TILE_GET_INFO_MEMBER(get_mcatadv_tile_info2);
virtual void machine_start() override;
virtual void video_start() override;
- UINT32 screen_update_mcatadv(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
+ uint32_t screen_update_mcatadv(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
void screen_eof_mcatadv(screen_device &screen, bool state);
void draw_sprites( screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect );
- void mcatadv_draw_tilemap_part( screen_device &screen, UINT16* current_scroll, UINT16* current_videoram1, int i, tilemap_t* current_tilemap, bitmap_ind16 &bitmap, const rectangle &cliprect );
+ void mcatadv_draw_tilemap_part( screen_device &screen, uint16_t* current_scroll, uint16_t* current_videoram1, int i, tilemap_t* current_tilemap, bitmap_ind16 &bitmap, const rectangle &cliprect );
};