diff options
Diffstat (limited to 'src/mame/includes/iqblock.h')
-rw-r--r-- | src/mame/includes/iqblock.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/includes/iqblock.h b/src/mame/includes/iqblock.h index be63ef229b1..5c75ee98446 100644 --- a/src/mame/includes/iqblock.h +++ b/src/mame/includes/iqblock.h @@ -14,9 +14,9 @@ public: required_device<cpu_device> m_maincpu; required_device<gfxdecode_device> m_gfxdecode; - required_shared_ptr<UINT8> m_rambase; - required_shared_ptr<UINT8> m_bgvideoram; - required_shared_ptr<UINT8> m_fgvideoram; + required_shared_ptr<uint8_t> m_rambase; + required_shared_ptr<uint8_t> m_bgvideoram; + required_shared_ptr<uint8_t> m_fgvideoram; int m_videoenable; int m_video_type; @@ -40,5 +40,5 @@ public: TILE_GET_INFO_MEMBER(get_bg_tile_info); TILE_GET_INFO_MEMBER(get_fg_tile_info); - 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); }; |