summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/debug/debugcpu.cpp
diff options
context:
space:
mode:
author Oliver Stöneberg <firewave@users.noreply.github.com>2018-01-06 03:37:49 +0100
committer Vas Crabb <cuavas@users.noreply.github.com>2018-01-06 20:50:29 +1100
commiteab5e7e1163caa1c3ba806e870ceccedb871702d (patch)
treeab52fe2419e3ab9921a42e14da7dcb43af0a68b6 /src/emu/debug/debugcpu.cpp
parentbf7ec8502fea2bbb4a8e17838910fd744a790f43 (diff)
debugcpu.cpp: added missing initialization of m_vblank_occurred (nw)
Diffstat (limited to 'src/emu/debug/debugcpu.cpp')
-rw-r--r--src/emu/debug/debugcpu.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/emu/debug/debugcpu.cpp b/src/emu/debug/debugcpu.cpp
index 71429112419..02c2b138037 100644
--- a/src/emu/debug/debugcpu.cpp
+++ b/src/emu/debug/debugcpu.cpp
@@ -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)