From 21f5a0ff638a5f067afe36a8eff01ce8270f51dc Mon Sep 17 00:00:00 2001 From: "R. Belmont" Date: Sun, 29 Jan 2012 17:52:49 +0000 Subject: [PATCH] [MT #3444] Show save state items in debugger memory windows [R. Belmont] --- src/emu/debug/dvmemory.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)));