summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/debug/debugvw.c
diff options
context:
space:
mode:
author Aaron Giles <aaron@aarongiles.com>2009-11-23 04:55:26 +0000
committer Aaron Giles <aaron@aarongiles.com>2009-11-23 04:55:26 +0000
commit9072c7f9116996a41e9fac14a89677f9d8eb89f9 (patch)
tree26fceb4fb95f265850c578cb9fa880075b20730c /src/emu/debug/debugvw.c
parent41be698d6e813b1018cb35be64254e53db8e8a21 (diff)
Added new module tagmap which is a simple hashed string map.
Updated device and input port lists to use the tagmap for tag searches. Also removed the whole "quark" thing from the validity checker in favor of using the tagmaps.
Diffstat (limited to 'src/emu/debug/debugvw.c')
-rw-r--r--src/emu/debug/debugvw.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/debug/debugvw.c b/src/emu/debug/debugvw.c
index b237c08010c..fe2c155a271 100644
--- a/src/emu/debug/debugvw.c
+++ b/src/emu/debug/debugvw.c
@@ -2399,7 +2399,7 @@ static const memory_subview_item *memory_view_enumerate_subviews(running_machine
int itemnum;
/* first add all the device's address spaces */
- for (device = machine->config->devicelist; device != NULL; device = device->next)
+ for (device = machine->config->devicelist.head; device != NULL; device = device->next)
for (spacenum = 0; spacenum < ADDRESS_SPACES; spacenum++)
{
const address_space *space = memory_find_address_space(device, spacenum);