summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/atarifb.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/atarifb.h')
-rw-r--r--src/mame/includes/atarifb.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/mame/includes/atarifb.h b/src/mame/includes/atarifb.h
index 49fa450d7aa..78a459c0847 100644
--- a/src/mame/includes/atarifb.h
+++ b/src/mame/includes/atarifb.h
@@ -34,11 +34,11 @@ public:
m_palette(*this, "palette"){ }
/* video-related */
- required_shared_ptr<UINT8> m_alphap1_videoram;
- required_shared_ptr<UINT8> m_alphap2_videoram;
- required_shared_ptr<UINT8> m_field_videoram;
- required_shared_ptr<UINT8> m_spriteram;
- required_shared_ptr<UINT8> m_scroll_register;
+ required_shared_ptr<uint8_t> m_alphap1_videoram;
+ required_shared_ptr<uint8_t> m_alphap2_videoram;
+ required_shared_ptr<uint8_t> m_field_videoram;
+ required_shared_ptr<uint8_t> m_spriteram;
+ required_shared_ptr<uint8_t> m_scroll_register;
tilemap_t *m_alpha1_tilemap;
tilemap_t *m_alpha2_tilemap;
@@ -91,10 +91,10 @@ public:
virtual void machine_reset() override;
virtual void video_start() override;
DECLARE_PALETTE_INIT(atarifb);
- UINT32 screen_update_atarifb(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
- UINT32 screen_update_abaseb(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
- UINT32 screen_update_soccer(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
- void get_tile_info_common( tile_data &tileinfo, tilemap_memory_index tile_index, UINT8 *alpha_videoram );
+ uint32_t screen_update_atarifb(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
+ uint32_t screen_update_abaseb(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
+ uint32_t screen_update_soccer(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
+ void get_tile_info_common( tile_data &tileinfo, tilemap_memory_index tile_index, uint8_t *alpha_videoram );
void draw_playfield_and_alpha( bitmap_ind16 &bitmap, const rectangle &cliprect, int playfield_x_offset, int playfield_y_offset );
void draw_sprites( bitmap_ind16 &bitmap, const rectangle &cliprect, int gfx, int is_soccer );
};