summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/dday.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/dday.h')
-rw-r--r--src/mame/includes/dday.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mame/includes/dday.h b/src/mame/includes/dday.h
index a6b1c498f1b..78bc9c5e769 100644
--- a/src/mame/includes/dday.h
+++ b/src/mame/includes/dday.h
@@ -22,10 +22,10 @@ public:
m_palette(*this, "palette") { }
/* memory pointers */
- required_shared_ptr<UINT8> m_textvideoram;
- required_shared_ptr<UINT8> m_fgvideoram;
- required_shared_ptr<UINT8> m_bgvideoram;
- required_shared_ptr<UINT8> m_colorram;
+ required_shared_ptr<uint8_t> m_textvideoram;
+ required_shared_ptr<uint8_t> m_fgvideoram;
+ required_shared_ptr<uint8_t> m_bgvideoram;
+ required_shared_ptr<uint8_t> m_colorram;
/* video-related */
tilemap_t *m_fg_tilemap;
@@ -56,7 +56,7 @@ public:
virtual void machine_reset() override;
virtual void video_start() override;
DECLARE_PALETTE_INIT(dday);
- UINT32 screen_update_dday(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
+ uint32_t screen_update_dday(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
TIMER_CALLBACK_MEMBER(countdown_timer_callback);
void start_countdown_timer();
required_device<cpu_device> m_maincpu;