debugcpu.cpp: added missing initialization of m_vblank_occurred (nw)

This commit is contained in:
Oliver Stöneberg 2018-01-06 03:37:49 +01:00 committed by Vas Crabb
parent bf7ec8502f
commit eab5e7e116

View File

@ -48,6 +48,7 @@ debugger_cpu::debugger_cpu(running_machine &machine)
, m_visiblecpu(nullptr)
, m_breakcpu(nullptr)
, m_symtable(nullptr)
, m_vblank_occurred(false)
, m_execution_state(EXECUTION_STATE_STOPPED)
, m_stop_when_not_device(nullptr)
, m_bpindex(1)