summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/gotya.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/gotya.h')
-rw-r--r--src/mame/includes/gotya.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/mame/includes/gotya.h b/src/mame/includes/gotya.h
index 6ad087b0242..92c18b540af 100644
--- a/src/mame/includes/gotya.h
+++ b/src/mame/includes/gotya.h
@@ -18,11 +18,11 @@ public:
m_palette(*this, "palette") { }
/* memory pointers */
- required_shared_ptr<UINT8> m_scroll;
- required_shared_ptr<UINT8> m_videoram;
- required_shared_ptr<UINT8> m_colorram;
- required_shared_ptr<UINT8> m_videoram2;
- required_shared_ptr<UINT8> m_spriteram;
+ required_shared_ptr<uint8_t> m_scroll;
+ required_shared_ptr<uint8_t> m_videoram;
+ required_shared_ptr<uint8_t> m_colorram;
+ required_shared_ptr<uint8_t> m_videoram2;
+ required_shared_ptr<uint8_t> m_spriteram;
/* video-related */
tilemap_t *m_bg_tilemap;
@@ -43,7 +43,7 @@ public:
virtual void machine_reset() override;
virtual void video_start() override;
DECLARE_PALETTE_INIT(gotya);
- UINT32 screen_update_gotya(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
+ uint32_t screen_update_gotya(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
void draw_status_row( bitmap_ind16 &bitmap, const rectangle &cliprect, int sx, int col );
void draw_sprites( bitmap_ind16 &bitmap, const rectangle &cliprect );
void draw_status( bitmap_ind16 &bitmap, const rectangle &cliprect );