summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/coinmvga.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/coinmvga.cpp')
-rw-r--r--src/mame/drivers/coinmvga.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/drivers/coinmvga.cpp b/src/mame/drivers/coinmvga.cpp
index 9b0993bca4b..1cc9bb37299 100644
--- a/src/mame/drivers/coinmvga.cpp
+++ b/src/mame/drivers/coinmvga.cpp
@@ -240,11 +240,11 @@ public:
m_palette(*this, "palette"),
m_palette2(*this, "palette2") { }
- required_shared_ptr<UINT16> m_vram;
+ required_shared_ptr<uint16_t> m_vram;
DECLARE_DRIVER_INIT(colorama);
DECLARE_DRIVER_INIT(cmrltv75);
virtual void video_start() override;
- UINT32 screen_update_coinmvga(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
+ uint32_t screen_update_coinmvga(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
INTERRUPT_GEN_MEMBER(vblank_irq);
required_device<cpu_device> m_maincpu;
required_device<gfxdecode_device> m_gfxdecode;
@@ -264,7 +264,7 @@ void coinmvga_state::video_start()
}
-UINT32 coinmvga_state::screen_update_coinmvga(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect)
+uint32_t coinmvga_state::screen_update_coinmvga(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect)
{
gfx_element *gfx = m_gfxdecode->gfx(0);
int count = 0x04000/2;