mirror of
https://github.com/holub/mame
synced 2025-07-05 09:57:47 +03:00
added missing initialization in video_manager (nw)
This commit is contained in:
parent
efc8fa579e
commit
47d6c80bd9
@ -106,7 +106,8 @@ video_manager::video_manager(running_machine &machine)
|
|||||||
m_avi_file(NULL),
|
m_avi_file(NULL),
|
||||||
m_avi_frame_period(attotime::zero),
|
m_avi_frame_period(attotime::zero),
|
||||||
m_avi_next_frame_time(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
|
// request a callback upon exiting
|
||||||
machine.add_notifier(MACHINE_NOTIFY_EXIT, machine_notify_delegate(FUNC(video_manager::exit), this));
|
machine.add_notifier(MACHINE_NOTIFY_EXIT, machine_notify_delegate(FUNC(video_manager::exit), this));
|
||||||
|
Loading…
Reference in New Issue
Block a user