summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/badlands.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/badlands.h')
-rw-r--r--src/mame/includes/badlands.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/includes/badlands.h b/src/mame/includes/badlands.h
index fe4e9a68e6d..3e64a668b97 100644
--- a/src/mame/includes/badlands.h
+++ b/src/mame/includes/badlands.h
@@ -25,8 +25,8 @@ public:
required_device<tilemap_device> m_playfield_tilemap;
required_device<atari_motion_objects_device> m_mob;
- UINT8 m_pedal_value[2];
- UINT8 m_playfield_tile_bank;
+ uint8_t m_pedal_value[2];
+ uint8_t m_playfield_tile_bank;
virtual void update_interrupts() override;
virtual void scanline_update(screen_device &screen, int scanline) override;
@@ -42,7 +42,7 @@ public:
DECLARE_MACHINE_RESET(badlands);
DECLARE_VIDEO_START(badlands);
DECLARE_MACHINE_RESET(badlandsb);
- UINT32 screen_update_badlands(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
+ uint32_t screen_update_badlands(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
INTERRUPT_GEN_MEMBER(vblank_int);
DECLARE_WRITE16_MEMBER( badlands_pf_bank_w );