summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/debug
diff options
context:
space:
mode:
author R. Belmont <rb6502@users.noreply.github.com>2012-01-29 17:52:49 +0000
committer R. Belmont <rb6502@users.noreply.github.com>2012-01-29 17:52:49 +0000
commit21f5a0ff638a5f067afe36a8eff01ce8270f51dc (patch)
treec13a54be9d9e651b4b607e97969d8759d3247088 /src/emu/debug
parent51d1fe58c3b34a780c64a153371ed409b8185056 (diff)
[MT #3444] Show save state items in debugger memory windows [R. Belmont]
Diffstat (limited to 'src/emu/debug')
-rw-r--r--src/emu/debug/dvmemory.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/debug/dvmemory.c b/src/emu/debug/dvmemory.c
index 779e10f256d..bc8a4e585ad 100644
--- a/src/emu/debug/dvmemory.c
+++ b/src/emu/debug/dvmemory.c
@@ -182,7 +182,7 @@ void debug_view_memory::enumerate_sources()
break;
// if this is a single-entry global, add it
- if (valcount > 1 && strstr(itemname, "globals/"))
+ if (strstr(itemname, "state->"))
{
name.cpy(strrchr(itemname, '/') + 1);
m_source_list.append(*auto_alloc(machine(), debug_view_memory_source(name, base, valsize, valcount)));