summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/m58.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/m58.h')
-rw-r--r--src/mame/includes/m58.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/mame/includes/m58.h b/src/mame/includes/m58.h
index 26af9956764..9ee93e40a6d 100644
--- a/src/mame/includes/m58.h
+++ b/src/mame/includes/m58.h
@@ -31,12 +31,12 @@ public:
required_device<palette_device> m_palette;
/* memory pointers */
- required_shared_ptr<UINT8> m_videoram;
- required_shared_ptr<UINT8> m_spriteram;
- required_shared_ptr<UINT8> m_scroll_x_low;
- required_shared_ptr<UINT8> m_scroll_x_high;
- required_shared_ptr<UINT8> m_scroll_y_low;
- required_shared_ptr<UINT8> m_score_panel_disabled;
+ required_shared_ptr<uint8_t> m_videoram;
+ required_shared_ptr<uint8_t> m_spriteram;
+ required_shared_ptr<uint8_t> m_scroll_x_low;
+ required_shared_ptr<uint8_t> m_scroll_x_high;
+ required_shared_ptr<uint8_t> m_scroll_y_low;
+ required_shared_ptr<uint8_t> m_score_panel_disabled;
/* video-related */
tilemap_t* m_bg_tilemap;
@@ -52,7 +52,7 @@ public:
TILE_GET_INFO_MEMBER(get_bg_tile_info);
TILEMAP_MAPPER_MEMBER(tilemap_scan_rows);
- 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 );
void draw_panel( bitmap_ind16 &bitmap, const rectangle &cliprect );
};