summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/gaelco.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/gaelco.h')
-rw-r--r--src/mame/includes/gaelco.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/mame/includes/gaelco.h b/src/mame/includes/gaelco.h
index 2bfd7d4829f..2f558fe82d3 100644
--- a/src/mame/includes/gaelco.h
+++ b/src/mame/includes/gaelco.h
@@ -31,10 +31,10 @@ public:
optional_device<generic_latch_8_device> m_soundlatch;
/* memory pointers */
- required_shared_ptr<UINT16> m_videoram;
- required_shared_ptr<UINT16> m_vregs;
- required_shared_ptr<UINT16> m_spriteram;
- optional_shared_ptr<UINT16> m_screenram;
+ required_shared_ptr<uint16_t> m_videoram;
+ required_shared_ptr<uint16_t> m_vregs;
+ required_shared_ptr<uint16_t> m_spriteram;
+ optional_shared_ptr<uint16_t> m_screenram;
/* video-related */
tilemap_t *m_tilemap[2];
@@ -55,7 +55,7 @@ public:
DECLARE_VIDEO_START(bigkarnk);
DECLARE_VIDEO_START(maniacsq);
- UINT32 screen_update_bigkarnk(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
- UINT32 screen_update_maniacsq(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
+ uint32_t screen_update_bigkarnk(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
+ uint32_t screen_update_maniacsq(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
void draw_sprites( screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect );
};