summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/ironhors.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/ironhors.h')
-rw-r--r--src/mame/includes/ironhors.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/mame/includes/ironhors.h b/src/mame/includes/ironhors.h
index 8a9c0f7c50d..13ff40a0128 100644
--- a/src/mame/includes/ironhors.h
+++ b/src/mame/includes/ironhors.h
@@ -33,12 +33,12 @@ public:
required_device<generic_latch_8_device> m_soundlatch;
/* memory pointers */
- required_shared_ptr<UINT8> m_interrupt_enable;
- required_shared_ptr<UINT8> m_scroll;
- required_shared_ptr<UINT8> m_colorram;
- required_shared_ptr<UINT8> m_videoram;
- required_shared_ptr<UINT8> m_spriteram2;
- required_shared_ptr<UINT8> m_spriteram;
+ required_shared_ptr<uint8_t> m_interrupt_enable;
+ required_shared_ptr<uint8_t> m_scroll;
+ required_shared_ptr<uint8_t> m_colorram;
+ required_shared_ptr<uint8_t> m_videoram;
+ required_shared_ptr<uint8_t> m_spriteram2;
+ required_shared_ptr<uint8_t> m_spriteram;
/* video-related */
tilemap_t *m_bg_tilemap;
@@ -64,8 +64,8 @@ public:
DECLARE_PALETTE_INIT(ironhors);
DECLARE_VIDEO_START(farwest);
- UINT32 screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
- UINT32 screen_update_farwest(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
+ uint32_t screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
+ uint32_t screen_update_farwest(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
void draw_sprites( bitmap_ind16 &bitmap, const rectangle &cliprect );
void farwest_draw_sprites( bitmap_ind16 &bitmap, const rectangle &cliprect );