summaryrefslogtreecommitdiffstats
path: root/src/mame/drivers/murogmbl.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/murogmbl.cpp')
-rw-r--r--src/mame/drivers/murogmbl.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/drivers/murogmbl.cpp b/src/mame/drivers/murogmbl.cpp
index fead2b8200b..e2b827548da 100644
--- a/src/mame/drivers/murogmbl.cpp
+++ b/src/mame/drivers/murogmbl.cpp
@@ -55,18 +55,18 @@ public:
required_device<gfxdecode_device> m_gfxdecode;
required_device<palette_device> m_palette;
- required_shared_ptr<UINT8> m_video;
+ required_shared_ptr<uint8_t> m_video;
virtual void video_start() override;
DECLARE_PALETTE_INIT(murogmbl);
- 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);
};
PALETTE_INIT_MEMBER(murogmbl_state, murogmbl)
{
- const UINT8 *color_prom = memregion("proms")->base();
+ const uint8_t *color_prom = memregion("proms")->base();
int bit0, bit1, bit2 , r, g, b;
int i;
@@ -106,7 +106,7 @@ void murogmbl_state::video_start()
{
}
-UINT32 murogmbl_state::screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect)
+uint32_t murogmbl_state::screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect)
{
gfx_element *gfx = m_gfxdecode->gfx(0);
int count = 0;