summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/magicfly.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/magicfly.cpp')
-rw-r--r--src/mame/drivers/magicfly.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/drivers/magicfly.cpp b/src/mame/drivers/magicfly.cpp
index 479574b3d90..cd2c3759866 100644
--- a/src/mame/drivers/magicfly.cpp
+++ b/src/mame/drivers/magicfly.cpp
@@ -462,8 +462,8 @@ public:
m_dac(*this, "dac"),
m_gfxdecode(*this, "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;
int m_input_selector;
DECLARE_WRITE8_MEMBER(magicfly_videoram_w);
@@ -476,7 +476,7 @@ public:
DECLARE_PALETTE_INIT(magicfly);
DECLARE_PALETTE_INIT(bchance);
DECLARE_VIDEO_START(7mezzo);
- UINT32 screen_update_magicfly(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
+ uint32_t screen_update_magicfly(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
required_device<cpu_device> m_maincpu;
required_device<dac_bit_interface> m_dac;
required_device<gfxdecode_device> m_gfxdecode;
@@ -563,7 +563,7 @@ VIDEO_START_MEMBER(magicfly_state, 7mezzo)
}
-UINT32 magicfly_state::screen_update_magicfly(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect)
+uint32_t magicfly_state::screen_update_magicfly(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect)
{
m_bg_tilemap->draw(screen, bitmap, cliprect, 0, 0);
return 0;