summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/scotrsht.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/scotrsht.h')
-rw-r--r--src/mame/includes/scotrsht.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mame/includes/scotrsht.h b/src/mame/includes/scotrsht.h
index 3b2470d30d9..6bf1442832a 100644
--- a/src/mame/includes/scotrsht.h
+++ b/src/mame/includes/scotrsht.h
@@ -24,10 +24,10 @@ public:
required_device<palette_device> m_palette;
required_device<generic_latch_8_device> m_soundlatch;
- required_shared_ptr<UINT8> m_colorram;
- required_shared_ptr<UINT8> m_videoram;
- required_shared_ptr<UINT8> m_spriteram;
- required_shared_ptr<UINT8> m_scroll;
+ required_shared_ptr<uint8_t> m_colorram;
+ required_shared_ptr<uint8_t> m_videoram;
+ required_shared_ptr<uint8_t> m_spriteram;
+ required_shared_ptr<uint8_t> m_scroll;
tilemap_t *m_bg_tilemap;
@@ -49,6 +49,6 @@ public:
virtual void video_start() override;
DECLARE_PALETTE_INIT(scotrsht);
- 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 );
};