summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/othunder.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/othunder.h')
-rw-r--r--src/mame/includes/othunder.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/includes/othunder.h b/src/mame/includes/othunder.h
index 85bd575a0de..78e285c3d76 100644
--- a/src/mame/includes/othunder.h
+++ b/src/mame/includes/othunder.h
@@ -53,7 +53,7 @@ public:
m_palette(*this, "palette") { }
/* memory pointers */
- required_shared_ptr<UINT16> m_spriteram;
+ required_shared_ptr<uint16_t> m_spriteram;
/* video-related */
std::unique_ptr<othunder_tempsprite[]> m_spritelist;
@@ -92,7 +92,7 @@ public:
virtual void machine_start() override;
virtual void machine_reset() override;
virtual void video_start() override;
- UINT32 screen_update_othunder(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
+ uint32_t screen_update_othunder(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
INTERRUPT_GEN_MEMBER(vblank_interrupt);
void draw_sprites( screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect, const int *primasks, int y_offs );
void update_irq();