diff options
Diffstat (limited to 'src/mame/drivers/gluck2.cpp')
-rw-r--r-- | src/mame/drivers/gluck2.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mame/drivers/gluck2.cpp b/src/mame/drivers/gluck2.cpp index b7f35d8552c..a2b46f8ebe8 100644 --- a/src/mame/drivers/gluck2.cpp +++ b/src/mame/drivers/gluck2.cpp @@ -214,8 +214,8 @@ public: required_device<cpu_device> m_maincpu; required_device<gfxdecode_device> m_gfxdecode; - required_shared_ptr<UINT8> m_videoram; - required_shared_ptr<UINT8> m_colorram; + required_shared_ptr<uint8_t> m_videoram; + required_shared_ptr<uint8_t> m_colorram; tilemap_t *m_bg_tilemap; @@ -227,7 +227,7 @@ public: virtual void video_start() override; DECLARE_PALETTE_INIT(gluck2); - 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); }; @@ -272,7 +272,7 @@ void gluck2_state::video_start() } -UINT32 gluck2_state::screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect) +uint32_t gluck2_state::screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect) { m_bg_tilemap->draw(screen, bitmap, cliprect, 0, 0); return 0; @@ -281,7 +281,7 @@ UINT32 gluck2_state::screen_update(screen_device &screen, bitmap_ind16 &bitmap, PALETTE_INIT_MEMBER(gluck2_state, gluck2) { - const UINT8 *color_prom = memregion("proms")->base(); + const uint8_t *color_prom = memregion("proms")->base(); int i; for (i = 0; i < 0x100; i++) |