diff options
Diffstat (limited to 'src/mame/includes/mario.h')
-rw-r--r-- | src/mame/includes/mario.h | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/src/mame/includes/mario.h b/src/mame/includes/mario.h index df80da3d07d..2c9563e335e 100644 --- a/src/mame/includes/mario.h +++ b/src/mame/includes/mario.h @@ -87,23 +87,23 @@ public: #endif /* memory pointers */ - required_shared_ptr<UINT8> m_spriteram; - required_shared_ptr<UINT8> m_videoram; + required_shared_ptr<uint8_t> m_spriteram; + required_shared_ptr<uint8_t> m_videoram; /* sound state */ - UINT8 m_last; - UINT8 m_portT; + uint8_t m_last; + uint8_t m_portT; const char *m_eabank; /* video state */ - UINT8 m_gfx_bank; - UINT8 m_palette_bank; - UINT16 m_gfx_scroll; - UINT8 m_flip; + uint8_t m_gfx_bank; + uint8_t m_palette_bank; + uint16_t m_gfx_scroll; + uint8_t m_flip; tilemap_t *m_bg_tilemap; int m_monitor; - UINT8 m_nmi_mask; + uint8_t m_nmi_mask; DECLARE_WRITE8_MEMBER(nmi_mask_w); DECLARE_WRITE8_MEMBER(mario_videoram_w); DECLARE_WRITE8_MEMBER(mario_gfxbank_w); @@ -127,9 +127,9 @@ public: virtual void sound_start() override; virtual void sound_reset() override; DECLARE_PALETTE_INIT(mario); - UINT32 screen_update_common(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect); - UINT32 screen_update_mario(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect); - UINT32 screen_update_mariobl(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect); + uint32_t screen_update_common(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect); + uint32_t screen_update_mario(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect); + uint32_t screen_update_mariobl(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect); INTERRUPT_GEN_MEMBER(vblank_irq); DECLARE_WRITE8_MEMBER(mario_sh_sound_w); DECLARE_WRITE8_MEMBER(mario_sh1_w); |