diff options
Diffstat (limited to 'src/mame/drivers/dotrikun.cpp')
-rw-r--r-- | src/mame/drivers/dotrikun.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mame/drivers/dotrikun.cpp b/src/mame/drivers/dotrikun.cpp index 2eb5bc38c55..a06ebd7ffcc 100644 --- a/src/mame/drivers/dotrikun.cpp +++ b/src/mame/drivers/dotrikun.cpp @@ -46,16 +46,16 @@ public: required_device<cpu_device> m_maincpu; required_device<screen_device> m_screen; - required_shared_ptr<UINT8> m_vram; + required_shared_ptr<uint8_t> m_vram; required_device<timer_device> m_interrupt_timer; required_device<timer_device> m_scanline_off_timer; - UINT8 m_vram_latch; - UINT8 m_color; + uint8_t m_vram_latch; + uint8_t m_color; DECLARE_WRITE8_MEMBER(vram_w); DECLARE_WRITE8_MEMBER(color_w); - 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); TIMER_DEVICE_CALLBACK_MEMBER(interrupt); TIMER_DEVICE_CALLBACK_MEMBER(scanline_off); TIMER_DEVICE_CALLBACK_MEMBER(scanline_on); @@ -111,7 +111,7 @@ WRITE8_MEMBER(dotrikun_state::color_w) } -UINT32 dotrikun_state::screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect) +uint32_t dotrikun_state::screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect) { for (int y = cliprect.min_y; y <= cliprect.max_y; y++) { |