diff options
Diffstat (limited to 'src/mame/includes/galaxy.h')
-rw-r--r-- | src/mame/includes/galaxy.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/mame/includes/galaxy.h b/src/mame/includes/galaxy.h index 1a0e27a4841..74da9f9b5d0 100644 --- a/src/mame/includes/galaxy.h +++ b/src/mame/includes/galaxy.h @@ -25,11 +25,11 @@ public: m_region_gfx1(*this, "gfx1") { } int m_interrupts_enabled; - UINT8 m_latch_value; - UINT32 m_gal_cnt; - UINT8 m_code; - UINT8 m_first; - UINT32 m_start_addr; + uint8_t m_latch_value; + uint32_t m_gal_cnt; + uint8_t m_code; + uint8_t m_first; + uint32_t m_start_addr; emu_timer *m_gal_video_timer; bitmap_ind16 m_bitmap; DECLARE_READ8_MEMBER(galaxy_keyboard_r); @@ -39,12 +39,12 @@ public: virtual void video_start() override; DECLARE_MACHINE_RESET(galaxy); DECLARE_MACHINE_RESET(galaxyp); - UINT32 screen_update_galaxy(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect); + uint32_t screen_update_galaxy(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect); INTERRUPT_GEN_MEMBER(galaxy_interrupt); TIMER_CALLBACK_MEMBER(gal_video); IRQ_CALLBACK_MEMBER(galaxy_irq_callback); void galaxy_set_timer(); - void galaxy_setup_snapshot (const UINT8 * data, UINT32 size); + void galaxy_setup_snapshot (const uint8_t * data, uint32_t size); required_device<cpu_device> m_maincpu; DECLARE_SNAPSHOT_LOAD_MEMBER( galaxy ); protected: |