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

This commit is contained in:
Oliver Stöneberg 2013-03-09 01:09:38 +00:00
parent ecce1e39a6
commit 03c76a85ba
2 changed files with 2 additions and 1 deletions

View File

@ -1314,6 +1314,8 @@ void mc6845_device::device_reset()
m_cursor_x = 0;
m_mode_control = 0;
m_register_address_latch = 0;
m_update_addr = 0;
m_light_pen_addr = 0;
}

View File

@ -189,7 +189,6 @@ protected:
devcb_resolved_write_line m_res_out_hsync_func;
devcb_resolved_write_line m_res_out_vsync_func;
int m_device_type;
screen_device *m_screen;
/* register file */