summaryrefslogtreecommitdiffstats
path: root/src/mame/drivers/mz6500.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/mz6500.cpp')
-rw-r--r--src/mame/drivers/mz6500.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/mz6500.cpp b/src/mame/drivers/mz6500.cpp
index d513f30a33e..4314226b988 100644
--- a/src/mame/drivers/mz6500.cpp
+++ b/src/mame/drivers/mz6500.cpp
@@ -30,7 +30,7 @@ public:
DECLARE_WRITE8_MEMBER(mz6500_vram_w);
void fdc_irq(bool state);
void fdc_drq(bool state);
- required_shared_ptr<UINT16> m_video_ram;
+ required_shared_ptr<uint16_t> m_video_ram;
virtual void machine_reset() override;
virtual void video_start() override;
required_device<cpu_device> m_maincpu;
@@ -42,7 +42,7 @@ UPD7220_DISPLAY_PIXELS_MEMBER( mz6500_state::hgdc_display_pixels )
{
const rgb_t *palette = m_palette->palette()->entry_list_raw();
int gfx[3];
- UINT8 i,pen;
+ uint8_t i,pen;
gfx[0] = m_video_ram[(address + 0x00000) >> 1];
gfx[1] = m_video_ram[(address + 0x10000) >> 1];