diff options
author | 2016-07-31 19:23:49 +0200 | |
---|---|---|
committer | 2016-07-31 20:02:56 +0200 | |
commit | 6f5e223853eceb25a542c81d86c5cc9c715e3879 (patch) | |
tree | 21f6aabcbe586f330d895b19f224bbc08f145321 /src/emu/debug/debugcon.cpp | |
parent | 49bd91f3dee2a7a3e18dcc5be4ae5ea6d116157b (diff) |
for bool type use true and false (nw)
Diffstat (limited to 'src/emu/debug/debugcon.cpp')
-rw-r--r-- | src/emu/debug/debugcon.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/debug/debugcon.cpp b/src/emu/debug/debugcon.cpp index 9ce385554ee..b90c9e0d556 100644 --- a/src/emu/debug/debugcon.cpp +++ b/src/emu/debug/debugcon.cpp @@ -332,7 +332,7 @@ CMDERR debugger_console::execute_command(const char *command, bool echo) printf(">%s\n", command); /* parse and execute */ - result = internal_parse_command(command, TRUE); + result = internal_parse_command(command, true); /* display errors */ if (result != CMDERR_NONE) |