diff options
Diffstat (limited to 'src/mame/includes/tecmo16.h')
-rw-r--r-- | src/mame/includes/tecmo16.h | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/src/mame/includes/tecmo16.h b/src/mame/includes/tecmo16.h index 7017d4f7f3e..f15916ebd38 100644 --- a/src/mame/includes/tecmo16.h +++ b/src/mame/includes/tecmo16.h @@ -35,12 +35,12 @@ public: required_device<tecmo_mix_device> m_mixer; required_device<generic_latch_8_device> m_soundlatch; - required_shared_ptr<UINT16> m_videoram; - required_shared_ptr<UINT16> m_colorram; - required_shared_ptr<UINT16> m_videoram2; - required_shared_ptr<UINT16> m_colorram2; - required_shared_ptr<UINT16> m_charram; - required_shared_ptr<UINT16> m_spriteram; + required_shared_ptr<uint16_t> m_videoram; + required_shared_ptr<uint16_t> m_colorram; + required_shared_ptr<uint16_t> m_videoram2; + required_shared_ptr<uint16_t> m_colorram2; + required_shared_ptr<uint16_t> m_charram; + required_shared_ptr<uint16_t> m_spriteram; tilemap_t *m_fg_tilemap; tilemap_t *m_bg_tilemap; @@ -50,12 +50,12 @@ public: bitmap_ind16 m_tile_bitmap_fg; int m_flipscreen; int m_game_is_riot; - UINT16 m_scroll_x_w; - UINT16 m_scroll_y_w; - UINT16 m_scroll2_x_w; - UINT16 m_scroll2_y_w; - UINT16 m_scroll_char_x_w; - UINT16 m_scroll_char_y_w; + uint16_t m_scroll_x_w; + uint16_t m_scroll_y_w; + uint16_t m_scroll2_x_w; + uint16_t m_scroll2_y_w; + uint16_t m_scroll_char_x_w; + uint16_t m_scroll_char_y_w; DECLARE_WRITE16_MEMBER(sound_command_w); DECLARE_WRITE16_MEMBER(videoram_w); @@ -79,7 +79,7 @@ public: DECLARE_VIDEO_START(ginkun); DECLARE_VIDEO_START(riot); - 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); void save_state(); }; |