summaryrefslogtreecommitdiffstats
path: root/src/mame/includes/supbtime.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/supbtime.h')
-rw-r--r--src/mame/includes/supbtime.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/includes/supbtime.h b/src/mame/includes/supbtime.h
index 05057aca224..93a34603a9a 100644
--- a/src/mame/includes/supbtime.h
+++ b/src/mame/includes/supbtime.h
@@ -26,9 +26,9 @@ public:
{ }
/* memory pointers */
- required_shared_ptr<UINT16> m_spriteram;
- required_shared_ptr<UINT16> m_pf1_rowscroll;
- required_shared_ptr<UINT16> m_pf2_rowscroll;
+ required_shared_ptr<uint16_t> m_spriteram;
+ required_shared_ptr<uint16_t> m_pf1_rowscroll;
+ required_shared_ptr<uint16_t> m_pf2_rowscroll;
/* devices */
required_device<cpu_device> m_maincpu;
@@ -40,5 +40,5 @@ public:
DECLARE_READ16_MEMBER(supbtime_controls_r);
DECLARE_WRITE16_MEMBER(sound_w);
virtual void machine_start() override;
- UINT32 screen_update_supbtime(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
+ uint32_t screen_update_supbtime(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
};