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

This commit is contained in:
Oliver Stöneberg 2013-02-22 20:19:34 +00:00
parent a37772ec09
commit 3055378a38

View File

@ -1312,6 +1312,7 @@ void mc6845_device::device_reset()
m_line_address = 0;
m_horiz_disp = 0;
m_cursor_x = 0;
m_mode_control = 0;
}