summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/cbuster.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/cbuster.h')
-rw-r--r--src/mame/includes/cbuster.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/mame/includes/cbuster.h b/src/mame/includes/cbuster.h
index 8e8ea97166f..e404f579121 100644
--- a/src/mame/includes/cbuster.h
+++ b/src/mame/includes/cbuster.h
@@ -31,18 +31,18 @@ public:
{ }
/* memory pointers */
- required_shared_ptr<UINT16> m_ram;
- required_shared_ptr<UINT16> m_pf1_rowscroll;
- required_shared_ptr<UINT16> m_pf2_rowscroll;
- required_shared_ptr<UINT16> m_pf3_rowscroll;
- required_shared_ptr<UINT16> m_pf4_rowscroll;
- required_shared_ptr<UINT16> m_spriteram16;
+ required_shared_ptr<uint16_t> m_ram;
+ required_shared_ptr<uint16_t> m_pf1_rowscroll;
+ required_shared_ptr<uint16_t> m_pf2_rowscroll;
+ required_shared_ptr<uint16_t> m_pf3_rowscroll;
+ required_shared_ptr<uint16_t> m_pf4_rowscroll;
+ required_shared_ptr<uint16_t> m_spriteram16;
optional_device<decospr_device> m_sprgen;
- UINT16 m_spriteram16_buffer[0x400];
+ uint16_t m_spriteram16_buffer[0x400];
/* misc */
- UINT16 m_prot;
+ uint16_t m_prot;
int m_pri;
/* devices */
@@ -59,6 +59,6 @@ public:
virtual void machine_start() override;
virtual void machine_reset() override;
virtual void video_start() override;
- UINT32 screen_update_twocrude(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect);
+ uint32_t screen_update_twocrude(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect);
DECO16IC_BANK_CB_MEMBER(bank_callback);
};