summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/shangkid.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/shangkid.h')
-rw-r--r--src/mame/includes/shangkid.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/mame/includes/shangkid.h b/src/mame/includes/shangkid.h
index 6680c6c1748..795f9db3d7c 100644
--- a/src/mame/includes/shangkid.h
+++ b/src/mame/includes/shangkid.h
@@ -20,12 +20,12 @@ public:
required_device<gfxdecode_device> m_gfxdecode;
required_device<palette_device> m_palette;
- required_shared_ptr<UINT8> m_videoram;
- optional_shared_ptr<UINT8> m_spriteram;
- optional_shared_ptr<UINT8> m_videoreg;
+ required_shared_ptr<uint8_t> m_videoram;
+ optional_shared_ptr<uint8_t> m_spriteram;
+ optional_shared_ptr<uint8_t> m_videoreg;
- UINT8 m_bbx_sound_enable;
- UINT8 m_sound_latch;
+ uint8_t m_bbx_sound_enable;
+ uint8_t m_sound_latch;
int m_gfx_type;
tilemap_t *m_background;
@@ -51,9 +51,9 @@ public:
DECLARE_PALETTE_INIT(dynamski);
DECLARE_MACHINE_RESET(shangkid);
- UINT32 screen_update_shangkid(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
- UINT32 screen_update_dynamski(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
- void draw_sprite(const UINT8 *source, bitmap_ind16 &bitmap, const rectangle &cliprect);
+ uint32_t screen_update_shangkid(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
+ uint32_t screen_update_dynamski(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
+ void draw_sprite(const uint8_t *source, bitmap_ind16 &bitmap, const rectangle &cliprect);
void shangkid_draw_sprites(bitmap_ind16 &bitmap, const rectangle &cliprect);
void dynamski_draw_background(bitmap_ind16 &bitmap, const rectangle &cliprect, int pri );
void dynamski_draw_sprites(bitmap_ind16 &bitmap, const rectangle &cliprect );