summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/ambush.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/ambush.h')
-rw-r--r--src/mame/includes/ambush.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/mame/includes/ambush.h b/src/mame/includes/ambush.h
index bb67a139dda..ed042b802f6 100644
--- a/src/mame/includes/ambush.h
+++ b/src/mame/includes/ambush.h
@@ -21,16 +21,16 @@ public:
m_palette(*this, "palette") { }
/* memory pointers */
- required_shared_ptr<UINT8> m_videoram;
- required_shared_ptr<UINT8> m_spriteram;
- required_shared_ptr<UINT8> m_colorram;
- required_shared_ptr<UINT8> m_scrollram;
- required_shared_ptr<UINT8> m_colorbank;
+ required_shared_ptr<uint8_t> m_videoram;
+ required_shared_ptr<uint8_t> m_spriteram;
+ required_shared_ptr<uint8_t> m_colorram;
+ required_shared_ptr<uint8_t> m_scrollram;
+ required_shared_ptr<uint8_t> m_colorbank;
DECLARE_WRITE8_MEMBER(ambush_coin_counter_w);
DECLARE_WRITE8_MEMBER(flip_screen_w);
DECLARE_PALETTE_INIT(ambush);
- UINT32 screen_update_ambush(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
+ uint32_t screen_update_ambush(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
void draw_chars( bitmap_ind16 &bitmap, const rectangle &cliprect, int priority );
required_device<cpu_device> m_maincpu;
required_device<gfxdecode_device> m_gfxdecode;