summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/mustache.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/mustache.h')
-rw-r--r--src/mame/includes/mustache.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/includes/mustache.h b/src/mame/includes/mustache.h
index 160f2398d16..6e56298a981 100644
--- a/src/mame/includes/mustache.h
+++ b/src/mame/includes/mustache.h
@@ -20,9 +20,9 @@ public:
required_device<screen_device> m_screen;
required_device<palette_device> m_palette;
- required_shared_ptr<UINT8> m_videoram;
- required_shared_ptr<UINT8> m_spriteram;
- required_shared_ptr<UINT8> m_decrypted_opcodes;
+ required_shared_ptr<uint8_t> m_videoram;
+ required_shared_ptr<uint8_t> m_spriteram;
+ required_shared_ptr<uint8_t> m_decrypted_opcodes;
tilemap_t *m_bg_tilemap;
int m_control_byte;
@@ -37,7 +37,7 @@ public:
virtual void video_start() override;
DECLARE_PALETTE_INIT(mustache);
- UINT32 screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
+ uint32_t screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
void draw_sprites(bitmap_ind16 &bitmap, const rectangle &cliprect );
TIMER_DEVICE_CALLBACK_MEMBER(scanline);