summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/mugsmash.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/mugsmash.h')
-rw-r--r--src/mame/includes/mugsmash.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/mame/includes/mugsmash.h b/src/mame/includes/mugsmash.h
index 93cc654fc81..ea2991d7c9f 100644
--- a/src/mame/includes/mugsmash.h
+++ b/src/mame/includes/mugsmash.h
@@ -19,11 +19,11 @@ public:
m_palette(*this, "palette"),
m_soundlatch(*this, "soundlatch") { }
- required_shared_ptr<UINT16> m_videoram1;
- required_shared_ptr<UINT16> m_videoram2;
- required_shared_ptr<UINT16> m_regs1;
- required_shared_ptr<UINT16> m_regs2;
- required_shared_ptr<UINT16> m_spriteram;
+ required_shared_ptr<uint16_t> m_videoram1;
+ required_shared_ptr<uint16_t> m_videoram2;
+ required_shared_ptr<uint16_t> m_regs1;
+ required_shared_ptr<uint16_t> m_regs2;
+ required_shared_ptr<uint16_t> m_spriteram;
tilemap_t *m_tilemap1;
tilemap_t *m_tilemap2;
@@ -42,6 +42,6 @@ public:
TILE_GET_INFO_MEMBER(get_mugsmash_tile_info2);
virtual void machine_start() override;
virtual void video_start() override;
- UINT32 screen_update_mugsmash(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
+ uint32_t screen_update_mugsmash(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
void draw_sprites(bitmap_ind16 &bitmap, const rectangle &cliprect );
};