diff options
Diffstat (limited to 'src/mame/includes/batman.h')
-rw-r--r-- | src/mame/includes/batman.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/includes/batman.h b/src/mame/includes/batman.h index f98632ee177..b388e97fe38 100644 --- a/src/mame/includes/batman.h +++ b/src/mame/includes/batman.h @@ -21,8 +21,8 @@ public: required_device<atari_jsa_iii_device> m_jsa; required_device<atari_vad_device> m_vad; - UINT16 m_latch_data; - UINT8 m_alpha_tile_bank; + uint16_t m_latch_data; + uint8_t m_alpha_tile_bank; virtual void update_interrupts() override; DECLARE_WRITE16_MEMBER(latch_w); @@ -33,7 +33,7 @@ public: DECLARE_MACHINE_START(batman); DECLARE_MACHINE_RESET(batman); DECLARE_VIDEO_START(batman); - UINT32 screen_update_batman(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect); + uint32_t screen_update_batman(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect); static const atari_motion_objects_config s_mob_config; }; |