added missing initialization in video_manager (nw)

This commit is contained in:
Oliver Stöneberg 2015-03-20 08:47:16 +01:00
parent efc8fa579e
commit 47d6c80bd9

View file

@ -106,7 +106,8 @@ video_manager::video_manager(running_machine &machine)
m_avi_file(NULL),
m_avi_frame_period(attotime::zero),
m_avi_next_frame_time(attotime::zero),
m_avi_frame(0)
m_avi_frame(0),
m_dummy_recording(false)
{
// request a callback upon exiting
machine.add_notifier(MACHINE_NOTIFY_EXIT, machine_notify_delegate(FUNC(video_manager::exit), this));