summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/ksayakyu.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/ksayakyu.h')
-rw-r--r--src/mame/includes/ksayakyu.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/includes/ksayakyu.h b/src/mame/includes/ksayakyu.h
index 1000b18628a..37cf048a7cd 100644
--- a/src/mame/includes/ksayakyu.h
+++ b/src/mame/includes/ksayakyu.h
@@ -22,8 +22,8 @@ public:
m_soundlatch(*this, "soundlatch") { }
/* memory pointers */
- required_shared_ptr<UINT8> m_videoram;
- required_shared_ptr<UINT8> m_spriteram;
+ required_shared_ptr<uint8_t> m_videoram;
+ required_shared_ptr<uint8_t> m_spriteram;
/* video-related */
tilemap_t *m_tilemap;
@@ -48,7 +48,7 @@ public:
virtual void machine_reset() override;
virtual void video_start() override;
DECLARE_PALETTE_INIT(ksayakyu);
- UINT32 screen_update_ksayakyu(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
+ uint32_t screen_update_ksayakyu(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
void draw_sprites( bitmap_ind16 &bitmap, const rectangle &cliprect );
required_device<cpu_device> m_maincpu;
required_device<gfxdecode_device> m_gfxdecode;