summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/debug/debughlp.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/debug/debughlp.c')
-rw-r--r--src/emu/debug/debughlp.c11
1 files changed, 5 insertions, 6 deletions
diff --git a/src/emu/debug/debughlp.c b/src/emu/debug/debughlp.c
index 12eeab5daa9..cf2eedf51a9 100644
--- a/src/emu/debug/debughlp.c
+++ b/src/emu/debug/debughlp.c
@@ -19,8 +19,8 @@
CONSTANTS
***************************************************************************/
-#define CONSOLE_HISTORY (10000)
-#define CONSOLE_LINE_CHARS (100)
+#define CONSOLE_HISTORY (10000)
+#define CONSOLE_LINE_CHARS (100)
@@ -30,8 +30,8 @@
struct help_item
{
- const char * tag;
- const char * help;
+ const char * tag;
+ const char * help;
};
@@ -640,7 +640,7 @@ static const help_item static_help_list[] =
" gt[ime] <milliseconds>\n"
"\n"
"The gtime command resumes execution of the current code. Control will not be returned to the "
- "debugger until a specified delay has elapsed. The delay is in milliseconds.\n"
+ "debugger until a specified delay has elapsed. The delay is in milliseconds.\n"
"\n"
"Example:\n"
"\n"
@@ -1319,4 +1319,3 @@ const char *debug_get_help(const char *tag)
msglen += sprintf(&ambig_message[msglen], " help %s?\n", static_help_list[i].tag);
return ambig_message;
}
-