summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/taito_h.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/taito_h.h')
-rw-r--r--src/mame/includes/taito_h.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/includes/taito_h.h b/src/mame/includes/taito_h.h
index 48eccf26833..8d78f43dca0 100644
--- a/src/mame/includes/taito_h.h
+++ b/src/mame/includes/taito_h.h
@@ -23,7 +23,7 @@ public:
m_palette(*this, "palette") { }
/* memory pointers */
- required_shared_ptr<UINT16> m_m68000_mainram;
+ required_shared_ptr<uint16_t> m_m68000_mainram;
/* devices */
required_device<cpu_device> m_maincpu;
@@ -37,9 +37,9 @@ public:
DECLARE_WRITE8_MEMBER(sound_bankswitch_w);
virtual void machine_start() override;
virtual void machine_reset() override;
- UINT32 screen_update_syvalion(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
- UINT32 screen_update_recordbr(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
- UINT32 screen_update_dleague(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
+ uint32_t screen_update_syvalion(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
+ uint32_t screen_update_recordbr(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
+ uint32_t screen_update_dleague(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
void syvalion_draw_sprites( bitmap_ind16 &bitmap, const rectangle &cliprect );
void recordbr_draw_sprites( bitmap_ind16 &bitmap, const rectangle &cliprect, int priority );
void dleague_draw_sprites( bitmap_ind16 &bitmap, const rectangle &cliprect, int priority );