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.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/debug/debughlp.c b/src/emu/debug/debughlp.c
index 68e188130da..d1241aab076 100644
--- a/src/emu/debug/debughlp.c
+++ b/src/emu/debug/debughlp.c
@@ -53,7 +53,7 @@ struct _help_item
TABLE OF HELP
***************************************************************************/
-static help_item static_help_list[] =
+static const help_item static_help_list[] =
{
{
"",
@@ -1035,7 +1035,7 @@ static help_item static_help_list[] =
const char *debug_get_help(const char *tag)
{
static char ambig_message[1024];
- help_item *found = NULL;
+ const help_item *found = NULL;
int i, msglen, foundcount = 0;
int taglen = (int)strlen(tag);
char tagcopy[256];