fixed uninitialized variable in src/emu/video/mc6845.c (nw)

This commit is contained in:
Oliver Stöneberg 2013-02-15 17:29:05 +00:00
parent 4b03ea2441
commit 1569b9651a

View File

@ -1037,6 +1037,7 @@ void mc6845_device::device_start()
m_hsync_on_pos = m_vsync_on_pos = 0;
m_hsync_off_pos = m_vsync_off_pos = 0;
m_vsync = m_hsync = 0;
m_cur = 0;
m_line_counter = 0;
m_horiz_disp = m_vert_disp = 0;
m_vert_sync_pos = 0;