summaryrefslogtreecommitdiffstats
path: root/src/mame/includes/skyfox.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/skyfox.h')
-rw-r--r--src/mame/includes/skyfox.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/includes/skyfox.h b/src/mame/includes/skyfox.h
index 8df505646f6..807f353f71b 100644
--- a/src/mame/includes/skyfox.h
+++ b/src/mame/includes/skyfox.h
@@ -29,7 +29,7 @@ public:
required_device<screen_device> m_screen;
required_device<palette_device> m_palette;
required_device<generic_latch_8_device> m_soundlatch;
- required_shared_ptr<UINT8> m_spriteram;
+ required_shared_ptr<uint8_t> m_spriteram;
int m_bg_pos;
int m_bg_ctrl;
@@ -40,7 +40,7 @@ public:
virtual void machine_start() override;
virtual void machine_reset() override;
DECLARE_PALETTE_INIT(skyfox);
- UINT32 screen_update_skyfox(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
+ uint32_t screen_update_skyfox(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
INTERRUPT_GEN_MEMBER(skyfox_interrupt);
void draw_sprites( bitmap_ind16 &bitmap, const rectangle &cliprect );
void draw_background(bitmap_ind16 &bitmap, const rectangle &cliprect);