diff options
Diffstat (limited to 'src/mame/includes/bogeyman.h')
-rw-r--r-- | src/mame/includes/bogeyman.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/mame/includes/bogeyman.h b/src/mame/includes/bogeyman.h index d5bd855fac3..0df196af73b 100644 --- a/src/mame/includes/bogeyman.h +++ b/src/mame/includes/bogeyman.h @@ -32,11 +32,11 @@ public: required_device<ay8910_device> m_ay2; /* memory pointers */ - required_shared_ptr<UINT8> m_videoram; - required_shared_ptr<UINT8> m_videoram2; - required_shared_ptr<UINT8> m_colorram; - required_shared_ptr<UINT8> m_colorram2; - required_shared_ptr<UINT8> m_spriteram; + required_shared_ptr<uint8_t> m_videoram; + required_shared_ptr<uint8_t> m_videoram2; + required_shared_ptr<uint8_t> m_colorram; + required_shared_ptr<uint8_t> m_colorram2; + required_shared_ptr<uint8_t> m_spriteram; /* video-related */ tilemap_t *m_bg_tilemap; @@ -63,6 +63,6 @@ public: virtual void video_start() override; DECLARE_PALETTE_INIT(bogeyman); - 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); void draw_sprites(bitmap_ind16 &bitmap, const rectangle &cliprect); }; |