summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/hcastle.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/hcastle.h')
-rw-r--r--src/mame/includes/hcastle.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/includes/hcastle.h b/src/mame/includes/hcastle.h
index 12874f11e62..8764b45c24f 100644
--- a/src/mame/includes/hcastle.h
+++ b/src/mame/includes/hcastle.h
@@ -30,8 +30,8 @@ public:
required_device<buffered_spriteram8_device> m_spriteram;
required_device<buffered_spriteram8_device> m_spriteram2;
/* memory pointers */
- required_shared_ptr<UINT8> m_pf1_videoram;
- required_shared_ptr<UINT8> m_pf2_videoram;
+ required_shared_ptr<uint8_t> m_pf1_videoram;
+ required_shared_ptr<uint8_t> m_pf2_videoram;
/* video-related */
tilemap_t *m_fg_tilemap;
@@ -65,8 +65,8 @@ public:
virtual void machine_reset() override;
virtual void video_start() override;
DECLARE_PALETTE_INIT(hcastle);
- UINT32 screen_update_hcastle(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
- void draw_sprites(bitmap_ind16 &bitmap, const rectangle &cliprect, bitmap_ind8 &priority_bitmap, UINT8 *sbank, int bank );
+ uint32_t screen_update_hcastle(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
+ void draw_sprites(bitmap_ind16 &bitmap, const rectangle &cliprect, bitmap_ind8 &priority_bitmap, uint8_t *sbank, int bank );
DECLARE_WRITE8_MEMBER(volume_callback);
required_device<cpu_device> m_maincpu;
required_device<gfxdecode_device> m_gfxdecode;