summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/labyrunr.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/labyrunr.h')
-rw-r--r--src/mame/includes/labyrunr.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mame/includes/labyrunr.h b/src/mame/includes/labyrunr.h
index 092b28a7503..ffeae360ac5 100644
--- a/src/mame/includes/labyrunr.h
+++ b/src/mame/includes/labyrunr.h
@@ -29,10 +29,10 @@ public:
required_device<cpu_device> m_maincpu;
/* memory pointers */
- required_shared_ptr<UINT8> m_scrollram;
- required_shared_ptr<UINT8> m_spriteram;
- required_shared_ptr<UINT8> m_videoram1;
- required_shared_ptr<UINT8> m_videoram2;
+ required_shared_ptr<uint8_t> m_scrollram;
+ required_shared_ptr<uint8_t> m_spriteram;
+ required_shared_ptr<uint8_t> m_videoram1;
+ required_shared_ptr<uint8_t> m_videoram2;
required_device<gfxdecode_device> m_gfxdecode;
required_device<screen_device> m_screen;
@@ -52,7 +52,7 @@ public:
virtual void machine_start() override;
virtual void video_start() override;
DECLARE_PALETTE_INIT(labyrunr);
- UINT32 screen_update_labyrunr(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
+ uint32_t screen_update_labyrunr(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
INTERRUPT_GEN_MEMBER(labyrunr_vblank_interrupt);
INTERRUPT_GEN_MEMBER(labyrunr_timer_interrupt);
};