summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/timeplt.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/timeplt.h')
-rw-r--r--src/mame/includes/timeplt.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/mame/includes/timeplt.h b/src/mame/includes/timeplt.h
index 3a9de0d64c1..5574f4b23ce 100644
--- a/src/mame/includes/timeplt.h
+++ b/src/mame/includes/timeplt.h
@@ -31,16 +31,16 @@ public:
required_device<palette_device> m_palette;
/* memory pointers */
- required_shared_ptr<UINT8> m_colorram;
- required_shared_ptr<UINT8> m_videoram;
- required_shared_ptr<UINT8> m_spriteram;
- required_shared_ptr<UINT8> m_spriteram2;
+ required_shared_ptr<uint8_t> m_colorram;
+ required_shared_ptr<uint8_t> m_videoram;
+ required_shared_ptr<uint8_t> m_spriteram;
+ required_shared_ptr<uint8_t> m_spriteram2;
/* video-related */
tilemap_t *m_bg_tilemap;
/* misc */
- UINT8 m_nmi_enable;
+ uint8_t m_nmi_enable;
bool m_video_enable;
/* common */
@@ -71,7 +71,7 @@ public:
DECLARE_VIDEO_START(chkun);
DECLARE_VIDEO_START(psurge);
- 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 );
INTERRUPT_GEN_MEMBER(interrupt);