summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/holeland.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/holeland.h')
-rw-r--r--src/mame/includes/holeland.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mame/includes/holeland.h b/src/mame/includes/holeland.h
index 429351618ad..a85a89bbb14 100644
--- a/src/mame/includes/holeland.h
+++ b/src/mame/includes/holeland.h
@@ -25,9 +25,9 @@ public:
required_device<palette_device> m_palette;
/* memory pointers */
- required_shared_ptr<UINT8> m_videoram;
- required_shared_ptr<UINT8> m_colorram;
- required_shared_ptr<UINT8> m_spriteram;
+ required_shared_ptr<uint8_t> m_videoram;
+ required_shared_ptr<uint8_t> m_colorram;
+ required_shared_ptr<uint8_t> m_spriteram;
/* video-related */
tilemap_t *m_bg_tilemap;
@@ -46,8 +46,8 @@ public:
DECLARE_VIDEO_START(holeland);
DECLARE_VIDEO_START(crzrally);
- UINT32 screen_update_holeland(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
- UINT32 screen_update_crzrally(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
+ uint32_t screen_update_holeland(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
+ uint32_t screen_update_crzrally(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
void holeland_draw_sprites( bitmap_ind16 &bitmap, const rectangle &cliprect );
void crzrally_draw_sprites( bitmap_ind16 &bitmap,const rectangle &cliprect );
};