summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/bankp.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/bankp.h')
-rw-r--r--src/mame/includes/bankp.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/mame/includes/bankp.h b/src/mame/includes/bankp.h
index 75d3038e3cf..285877fd484 100644
--- a/src/mame/includes/bankp.h
+++ b/src/mame/includes/bankp.h
@@ -20,10 +20,10 @@ public:
m_palette(*this, "palette") { }
/* memory pointers */
- required_shared_ptr<UINT8> m_videoram;
- required_shared_ptr<UINT8> m_colorram;
- required_shared_ptr<UINT8> m_videoram2;
- required_shared_ptr<UINT8> m_colorram2;
+ required_shared_ptr<uint8_t> m_videoram;
+ required_shared_ptr<uint8_t> m_colorram;
+ required_shared_ptr<uint8_t> m_videoram2;
+ required_shared_ptr<uint8_t> m_colorram2;
/* video-related */
tilemap_t *m_bg_tilemap;
@@ -31,7 +31,7 @@ public:
int m_scroll_x;
int m_priority;
- UINT8 m_nmi_mask;
+ uint8_t m_nmi_mask;
DECLARE_WRITE8_MEMBER(scroll_w);
DECLARE_WRITE8_MEMBER(videoram_w);
DECLARE_WRITE8_MEMBER(colorram_w);
@@ -43,7 +43,7 @@ public:
virtual void machine_reset() override;
virtual void video_start() override;
DECLARE_PALETTE_INIT(bankp);
- 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);
INTERRUPT_GEN_MEMBER(vblank_irq);
required_device<cpu_device> m_maincpu;
required_device<gfxdecode_device> m_gfxdecode;