diff options
Diffstat (limited to 'src/mame/drivers/tim011.cpp')
-rw-r--r-- | src/mame/drivers/tim011.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/drivers/tim011.cpp b/src/mame/drivers/tim011.cpp index df21a50a15c..90b46467809 100644 --- a/src/mame/drivers/tim011.cpp +++ b/src/mame/drivers/tim011.cpp @@ -28,13 +28,13 @@ public: virtual void machine_reset() override; virtual void video_start() override; - UINT32 screen_update_tim011(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect); + uint32_t screen_update_tim011(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect); DECLARE_WRITE8_MEMBER(print_w); DECLARE_WRITE8_MEMBER(scroll_w); DECLARE_WRITE8_MEMBER(fdc_dma_w); DECLARE_READ8_MEMBER(print_r); DECLARE_READ8_MEMBER(scroll_r); - UINT8 m_scroll; + uint8_t m_scroll; required_device<cpu_device> m_maincpu; required_device<upd765a_device> m_fdc; @@ -78,7 +78,7 @@ void tim011_state::video_start() { } -UINT32 tim011_state::screen_update_tim011(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect) +uint32_t tim011_state::screen_update_tim011(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect) { return 0; } |