summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/bloodbro.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/bloodbro.h')
-rw-r--r--src/mame/includes/bloodbro.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/mame/includes/bloodbro.h b/src/mame/includes/bloodbro.h
index 4073e769fb4..2d1c188460e 100644
--- a/src/mame/includes/bloodbro.h
+++ b/src/mame/includes/bloodbro.h
@@ -23,13 +23,13 @@ public:
required_device<cpu_device> m_audiocpu;
required_device<seibu_sound_device> m_seibu_sound;
- required_shared_ptr<UINT16> m_spriteram;
- required_shared_ptr<UINT16> m_bgvideoram;
- required_shared_ptr<UINT16> m_fgvideoram;
- required_shared_ptr<UINT16> m_txvideoram;
+ required_shared_ptr<uint16_t> m_spriteram;
+ required_shared_ptr<uint16_t> m_bgvideoram;
+ required_shared_ptr<uint16_t> m_fgvideoram;
+ required_shared_ptr<uint16_t> m_txvideoram;
- UINT16 m_scrollram[6];
- UINT16 m_layer_en;
+ uint16_t m_scrollram[6];
+ uint16_t m_layer_en;
tilemap_t *m_bg_tilemap;
tilemap_t *m_fg_tilemap;
@@ -49,9 +49,9 @@ public:
virtual void video_start() override;
- UINT32 screen_update_bloodbro(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
- UINT32 screen_update_weststry(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
- UINT32 screen_update_skysmash(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
+ uint32_t screen_update_bloodbro(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
+ uint32_t screen_update_weststry(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
+ uint32_t screen_update_skysmash(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
void bloodbro_draw_sprites(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
void weststry_draw_sprites(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);