summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/shaolins.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/shaolins.h')
-rw-r--r--src/mame/includes/shaolins.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mame/includes/shaolins.h b/src/mame/includes/shaolins.h
index 06c7a60df76..0efe76a3b71 100644
--- a/src/mame/includes/shaolins.h
+++ b/src/mame/includes/shaolins.h
@@ -16,13 +16,13 @@ public:
required_device<gfxdecode_device> m_gfxdecode;
required_device<palette_device> m_palette;
- required_shared_ptr<UINT8> m_spriteram;
- required_shared_ptr<UINT8> m_colorram;
- required_shared_ptr<UINT8> m_videoram;
+ required_shared_ptr<uint8_t> m_spriteram;
+ required_shared_ptr<uint8_t> m_colorram;
+ required_shared_ptr<uint8_t> m_videoram;
int m_palettebank;
tilemap_t *m_bg_tilemap;
- UINT8 m_nmi_enable;
+ uint8_t m_nmi_enable;
DECLARE_WRITE8_MEMBER(videoram_w);
DECLARE_WRITE8_MEMBER(colorram_w);
@@ -35,7 +35,7 @@ public:
virtual void video_start() override;
DECLARE_PALETTE_INIT(shaolins);
- UINT32 screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
+ uint32_t screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
void draw_sprites(bitmap_ind16 &bitmap, const rectangle &cliprect);
TIMER_DEVICE_CALLBACK_MEMBER(interrupt);