summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/vt220.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/vt220.cpp')
-rw-r--r--src/mame/drivers/vt220.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/vt220.cpp b/src/mame/drivers/vt220.cpp
index bdb1ebd9a99..7076980954b 100644
--- a/src/mame/drivers/vt220.cpp
+++ b/src/mame/drivers/vt220.cpp
@@ -26,7 +26,7 @@ public:
virtual void machine_reset() override;
virtual void video_start() override;
- UINT32 screen_update_vt220(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
+ uint32_t screen_update_vt220(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
required_device<cpu_device> m_maincpu;
required_device<ram_device> m_ram;
};
@@ -52,7 +52,7 @@ void vt220_state::video_start()
{
}
-UINT32 vt220_state::screen_update_vt220(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect)
+uint32_t vt220_state::screen_update_vt220(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect)
{
return 0;
}