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/sfcbox.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/sfcbox.cpp')
-rw-r--r-- | src/mame/drivers/sfcbox.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/drivers/sfcbox.cpp b/src/mame/drivers/sfcbox.cpp index d8c8534e5ae..8934f40c330 100644 --- a/src/mame/drivers/sfcbox.cpp +++ b/src/mame/drivers/sfcbox.cpp @@ -138,7 +138,7 @@ public: required_device<mb90082_device> m_mb90082; required_device<s3520cf_device> m_s3520cf; - 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); DECLARE_READ8_MEMBER( port_81_r ); DECLARE_READ8_MEMBER( port_83_r ); @@ -153,7 +153,7 @@ public: DECLARE_WRITE8_MEMBER(spc_ram_100_w); }; -UINT32 sfcbox_state::screen_update( screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect ) +uint32_t sfcbox_state::screen_update( screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect ) { m_mb90082->screen_update(screen,bitmap,cliprect); return 0; @@ -219,7 +219,7 @@ READ8_MEMBER( sfcbox_state::port_81_r ) ---- --x- SNES Transfer ACK from SNES (Bit3 of WRIO/RDIO on SNES side) ---- ---x Int0 Request (Coin-Input, Low for 44ms..80ms) (0=IRQ, 1=No) */ - UINT8 res; + uint8_t res; res = (m_screen->vblank() & 1) << 7; res = 1 << 6; |