summaryrefslogtreecommitdiffstats
path: root/src/mame/includes/magmax.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/magmax.h')
-rw-r--r--src/mame/includes/magmax.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/mame/includes/magmax.h b/src/mame/includes/magmax.h
index 36199b3c49c..fbc69168ace 100644
--- a/src/mame/includes/magmax.h
+++ b/src/mame/includes/magmax.h
@@ -16,19 +16,19 @@ public:
m_screen(*this, "screen"),
m_palette(*this, "palette") { }
- required_shared_ptr<UINT16> m_videoram;
- required_shared_ptr<UINT16> m_spriteram;
- required_shared_ptr<UINT16> m_vreg;
- required_shared_ptr<UINT16> m_scroll_x;
- required_shared_ptr<UINT16> m_scroll_y;
+ required_shared_ptr<uint16_t> m_videoram;
+ required_shared_ptr<uint16_t> m_spriteram;
+ required_shared_ptr<uint16_t> m_vreg;
+ required_shared_ptr<uint16_t> m_scroll_x;
+ required_shared_ptr<uint16_t> m_scroll_y;
- UINT8 m_sound_latch;
- UINT8 m_LS74_clr;
- UINT8 m_LS74_q;
- UINT8 m_gain_control;
+ uint8_t m_sound_latch;
+ uint8_t m_LS74_clr;
+ uint8_t m_LS74_q;
+ uint8_t m_gain_control;
emu_timer *m_interrupt_timer;
int m_flipscreen;
- std::unique_ptr<UINT32[]> m_prom_tab;
+ std::unique_ptr<uint32_t[]> m_prom_tab;
bitmap_ind16 m_bitmap;
DECLARE_WRITE16_MEMBER(magmax_sound_w);
DECLARE_READ8_MEMBER(magmax_sound_irq_ack);
@@ -40,7 +40,7 @@ public:
virtual void machine_reset() override;
virtual void video_start() override;
DECLARE_PALETTE_INIT(magmax);
- UINT32 screen_update_magmax(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
+ uint32_t screen_update_magmax(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
TIMER_CALLBACK_MEMBER(scanline_callback);
required_device<cpu_device> m_maincpu;
required_device<cpu_device> m_audiocpu;