summaryrefslogtreecommitdiffstats
path: root/src/emu/debugger.cpp
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2016-10-22 16:37:12 +0200
committer Miodrag Milanovic <mmicko@gmail.com>2016-10-22 16:37:12 +0200
commita6bdefec8c76e9878b634119c56438a7673b0385 (patch)
tree9b435836a12773fe5b84cf1fd04866ecd9ecc2da /src/emu/debugger.cpp
parent5f3d4fb33da4304e417a0e142e82e3d292646465 (diff)
more TRUE/FALSE cleanup (nw)
Diffstat (limited to 'src/emu/debugger.cpp')
-rw-r--r--src/emu/debugger.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/debugger.cpp b/src/emu/debugger.cpp
index b2e5bfd3fd6..188b74cb3b7 100644
--- a/src/emu/debugger.cpp
+++ b/src/emu/debugger.cpp
@@ -21,7 +21,7 @@
***************************************************************************/
static running_machine *g_machine = nullptr;
-static int g_atexit_registered = FALSE;
+static bool g_atexit_registered = false;
/*-------------------------------------------------
debugger_instruction_hook - CPU cores call
@@ -132,7 +132,7 @@ debugger_manager::debugger_manager(running_machine &machine)
/* register an atexit handler if we haven't yet */
if (!g_atexit_registered)
atexit(debugger_flush_all_traces_on_abnormal_exit);
- g_atexit_registered = TRUE;
+ g_atexit_registered = true;
/* initialize osd debugger features */
machine.osd().init_debugger();