diff options
author | 2016-10-22 13:13:17 +0200 | |
---|---|---|
committer | 2016-10-22 13:13:17 +0200 | |
commit | ddb290d5f615019c33c42b8d94e5a5254cabcf33 (patch) | |
tree | a70f688b0df3acd19da7b1151e5902e3c6af3fa5 /src/mame/includes/mystwarr.h | |
parent | 333bff8de64dfaeb98134000412796b4fdef970b (diff) |
NOTICE (TYPE NAME CONSOLIDATION)
Use standard uint64_t, uint32_t, uint16_t or uint8_t instead of UINT64, UINT32, UINT16 or UINT8
also use standard int64_t, int32_t, int16_t or int8_t instead of INT64, INT32, INT16 or INT8
Diffstat (limited to 'src/mame/includes/mystwarr.h')
-rw-r--r-- | src/mame/includes/mystwarr.h | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/src/mame/includes/mystwarr.h b/src/mame/includes/mystwarr.h index c0e35e0b61b..8a8b2b83d60 100644 --- a/src/mame/includes/mystwarr.h +++ b/src/mame/includes/mystwarr.h @@ -31,11 +31,11 @@ public: required_device<generic_latch_8_device> m_soundlatch; required_device<generic_latch_8_device> m_soundlatch2; required_device<generic_latch_8_device> m_soundlatch3; - required_shared_ptr<UINT16> m_gx_workram; - optional_shared_ptr<UINT16> m_spriteram; - std::unique_ptr<UINT8[]> m_decoded; + required_shared_ptr<uint16_t> m_gx_workram; + optional_shared_ptr<uint16_t> m_spriteram; + std::unique_ptr<uint8_t[]> m_decoded; - UINT8 m_mw_irq_control; + uint8_t m_mw_irq_control; int m_cur_sound_region; int m_layer_colorbase[6]; int m_oinprion; @@ -47,10 +47,10 @@ public: int m_roz_enable; int m_roz_rombank; tilemap_t *m_ult_936_tilemap; - UINT16 m_clip; + uint16_t m_clip; - UINT8 m_sound_ctrl; - UINT8 m_sound_nmi_clk; + uint8_t m_sound_ctrl; + uint8_t m_sound_nmi_clk; DECLARE_READ16_MEMBER(eeprom_r); DECLARE_WRITE16_MEMBER(mweeprom_w); @@ -94,10 +94,10 @@ public: DECLARE_VIDEO_START(gaiapols); DECLARE_MACHINE_RESET(martchmp); DECLARE_VIDEO_START(martchmp); - UINT32 screen_update_mystwarr(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect); - UINT32 screen_update_metamrph(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect); - UINT32 screen_update_dadandrn(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect); - UINT32 screen_update_martchmp(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect); + uint32_t screen_update_mystwarr(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect); + uint32_t screen_update_metamrph(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect); + uint32_t screen_update_dadandrn(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect); + uint32_t screen_update_martchmp(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect); INTERRUPT_GEN_MEMBER(ddd_interrupt); DECLARE_WRITE_LINE_MEMBER(k054539_nmi_gen); TIMER_DEVICE_CALLBACK_MEMBER(mystwarr_interrupt); |