diff options
| author | 2016-11-11 18:49:32 +0100 | |
|---|---|---|
| committer | 2016-11-11 18:50:14 +0100 | |
| commit | c0407f073bf7afe26407c4add5cfeaf7104913c9 (patch) | |
| tree | 63aa5f4959bf71697bb02e25c9f3ef3ca2c3c761 /src/emu/debug/debugcmd.cpp | |
| parent | cef6cd4a25b30e17d5def7871fa734b878b6f35a (diff) | |
Added IS_ENABLED, so we have compiler check for non used part, it is checked but not compiled in (nw)
false and true now used instead of integer where used as bool
Diffstat (limited to 'src/emu/debug/debugcmd.cpp')
| -rw-r--r-- | src/emu/debug/debugcmd.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/debug/debugcmd.cpp b/src/emu/debug/debugcmd.cpp index 620f83985b5..6c6cbdf0e20 100644 --- a/src/emu/debug/debugcmd.cpp +++ b/src/emu/debug/debugcmd.cpp @@ -529,7 +529,7 @@ bool debugger_commands::debug_command_parameter_command(const char *param) m_console.printf("Error in command: %s\n", param); m_console.printf(" %*s^", CMDERR_ERROR_OFFSET(err), ""); m_console.printf("%s\n", debugger_console::cmderr_to_string(err)); - return 0; + return false; } /*------------------------------------------------- |
