summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/1942.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/1942.h')
-rw-r--r--src/mame/includes/1942.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/mame/includes/1942.h b/src/mame/includes/1942.h
index ab920216af7..24152106bdd 100644
--- a/src/mame/includes/1942.h
+++ b/src/mame/includes/1942.h
@@ -24,16 +24,16 @@ public:
m_soundlatch(*this, "soundlatch") { }
/* memory pointers */
- required_shared_ptr<UINT8> m_spriteram;
- required_shared_ptr<UINT8> m_fg_videoram;
- required_shared_ptr<UINT8> m_bg_videoram;
- optional_shared_ptr<UINT8> m_protopal;
+ required_shared_ptr<uint8_t> m_spriteram;
+ required_shared_ptr<uint8_t> m_fg_videoram;
+ required_shared_ptr<uint8_t> m_bg_videoram;
+ optional_shared_ptr<uint8_t> m_protopal;
/* video-related */
tilemap_t *m_fg_tilemap;
tilemap_t *m_bg_tilemap;
int m_palette_bank;
- UINT8 m_scroll[2];
+ uint8_t m_scroll[2];
void create_palette();
DECLARE_PALETTE_INIT(1942);
DECLARE_PALETTE_INIT(1942p);
@@ -56,8 +56,8 @@ public:
virtual void machine_reset() override;
virtual void video_start() override;
void video_start_c1942p();
- UINT32 screen_update_1942(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
- UINT32 screen_update_1942p(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
+ uint32_t screen_update_1942(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
+ uint32_t screen_update_1942p(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
TIMER_DEVICE_CALLBACK_MEMBER(c1942_scanline);
void draw_sprites( bitmap_ind16 &bitmap, const rectangle &cliprect );
void draw_sprites_p( bitmap_ind16 &bitmap, const rectangle &cliprect );