mirror of
https://github.com/mamedev/mame.git
synced 2024-11-18 10:06:19 +01:00
added missing initialization in video_manager (nw)
This commit is contained in:
parent
efc8fa579e
commit
47d6c80bd9
1 changed files with 2 additions and 1 deletions
|
@ -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));
|
||||
|
|
Loading…
Reference in a new issue