mirror of
https://github.com/mamedev/mame.git
synced 2024-11-16 07:48:32 +01:00
Drink from the firehose, my pretties (nw)
This commit is contained in:
parent
51cd128df4
commit
dd83f53979
1 changed files with 4 additions and 3 deletions
|
@ -180,10 +180,11 @@ void debug_view_memory::enumerate_sources()
|
||||||
if (itemname == NULL)
|
if (itemname == NULL)
|
||||||
break;
|
break;
|
||||||
|
|
||||||
// if this is a single-entry global, add it
|
// add pretty much anything that's not a timer (we may wish to cull other items later)
|
||||||
if (strstr(itemname, "state->"))
|
// also, don't trim the front of the name, it's important to know which VIA6522 we're looking at, e.g.
|
||||||
|
if (strncmp(itemname, "timer/", 6))
|
||||||
{
|
{
|
||||||
name.cpy(strrchr(itemname, '/') + 1);
|
name.cpy(itemname);
|
||||||
m_source_list.append(*auto_alloc(machine(), debug_view_memory_source(name, base, valsize, valcount)));
|
m_source_list.append(*auto_alloc(machine(), debug_view_memory_source(name, base, valsize, valcount)));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue