diff options
| author | 2007-12-17 16:41:39 +0000 | |
|---|---|---|
| committer | 2007-12-17 16:41:39 +0000 | |
| commit | 507ca2d27520118151a2556d96b9a15aac768876 (patch) | |
| tree | 46bb2585f4114b1dfc157c3bfe60238d23877e7a /src/emu/debug/debugcmd.c | |
| parent | df34329a478833efbd542a424ce1813a11214d4a (diff) | |
Changes for MAME 0.121u4.mame0121u4
Diffstat (limited to 'src/emu/debug/debugcmd.c')
| -rw-r--r-- | src/emu/debug/debugcmd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/debug/debugcmd.c b/src/emu/debug/debugcmd.c index 41fe159e064..75c444a6d00 100644 --- a/src/emu/debug/debugcmd.c +++ b/src/emu/debug/debugcmd.c @@ -1275,7 +1275,7 @@ static void execute_wpdisenable(int ref, int params, const char *param[]) static void execute_wplist(int ref, int params, const char *param[]) { - static const char *spacenames[ADDRESS_SPACES] = { "program", "data", "I/O" }; + static const char *const spacenames[ADDRESS_SPACES] = { "program", "data", "I/O" }; int cpunum, printed = 0; char buffer[256]; @@ -1292,7 +1292,7 @@ static void execute_wplist(int ref, int params, const char *param[]) { if (cpuinfo->space[spacenum].first_wp) { - static const char *types[] = { "unkn ", "read ", "write", "r/w " }; + static const char *const types[] = { "unkn ", "read ", "write", "r/w " }; debug_cpu_watchpoint *wp; debug_console_printf("CPU %d %s space watchpoints:\n", cpunum, spacenames[spacenum]); |
