summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/debug/debugcpu.h
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2016-10-21 11:54:18 +0200
committer Miodrag Milanovic <mmicko@gmail.com>2016-10-21 11:54:18 +0200
commita291e77b2cfc4ce1b780db0d8fa664fb8094d365 (patch)
tree88f0085d143b3e93862482de364559aa9946b1e6 /src/emu/debug/debugcpu.h
parent5bdb4f7a8974c550608c83b8872e89259211496e (diff)
some bool <-> int not needed conversions, also cleaned drivenum.* was using memset for clearing vector (nw)
Diffstat (limited to 'src/emu/debug/debugcpu.h')
-rw-r--r--src/emu/debug/debugcpu.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/debug/debugcpu.h b/src/emu/debug/debugcpu.h
index 66bbe48e1f2..7ec39ba4863 100644
--- a/src/emu/debug/debugcpu.h
+++ b/src/emu/debug/debugcpu.h
@@ -80,7 +80,7 @@ public:
const device_debug * m_debugInterface; // the interface we were created from
breakpoint * m_next; // next in the list
int m_index; // user reported index
- UINT8 m_enabled; // enabled?
+ bool m_enabled; // enabled?
offs_t m_address; // execution address
parsed_expression m_condition; // condition
std::string m_action; // action
@@ -156,7 +156,7 @@ public:
registerpoint * m_next; // next in the list
int m_index; // user reported index
- UINT8 m_enabled; // enabled?
+ bool m_enabled; // enabled?
parsed_expression m_condition; // condition
std::string m_action; // action
};