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/drivers/bfm_swp.cpp | |
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/drivers/bfm_swp.cpp')
-rw-r--r-- | src/mame/drivers/bfm_swp.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mame/drivers/bfm_swp.cpp b/src/mame/drivers/bfm_swp.cpp index 6c7c91e0730..e6240a9ecea 100644 --- a/src/mame/drivers/bfm_swp.cpp +++ b/src/mame/drivers/bfm_swp.cpp @@ -113,14 +113,14 @@ public: m_maincpu(*this, "maincpu") { } - UINT32* m_cpuregion; - std::unique_ptr<UINT32[]> m_mainram; + uint32_t* m_cpuregion; + std::unique_ptr<uint32_t[]> m_mainram; DECLARE_READ32_MEMBER(bfm_swp_mem_r); DECLARE_WRITE32_MEMBER(bfm_swp_mem_w); - UINT32 screen_update(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect) + uint32_t screen_update(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect) { return 0; } @@ -190,8 +190,8 @@ INPUT_PORTS_END void bfm_swp_state::machine_start() { - m_cpuregion = (UINT32*)memregion( "maincpu" )->base(); - m_mainram = make_unique_clear<UINT32[]>(0x10000); + m_cpuregion = (uint32_t*)memregion( "maincpu" )->base(); + m_mainram = make_unique_clear<uint32_t[]>(0x10000); } |