summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/debug/debugcmd.cpp
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2016-06-18 11:07:39 +0200
committer Miodrag Milanovic <mmicko@gmail.com>2016-06-18 15:32:15 +0200
commitfc8e18d89312bb703297f92152a4eb5addace8a4 (patch)
treee226beb051158254b98f79d96385901f78d3ed46 /src/emu/debug/debugcmd.cpp
parentd705e4a28d49b9eeeadc9c019a12cf580ae5ee8f (diff)
tagged_list to unordered_map for debugger (nw)
Diffstat (limited to 'src/emu/debug/debugcmd.cpp')
-rw-r--r--src/emu/debug/debugcmd.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/emu/debug/debugcmd.cpp b/src/emu/debug/debugcmd.cpp
index ad1359baa28..4959f215caa 100644
--- a/src/emu/debug/debugcmd.cpp
+++ b/src/emu/debug/debugcmd.cpp
@@ -2823,12 +2823,12 @@ void debugger_commands::execute_symlist(int ref, int params, const char **param)
}
/* gather names for all symbols */
- for (symbol_entry &entry : symtable->entries())
+ for (auto &entry : symtable->entries())
{
/* only display "register" type symbols */
- if (!entry.is_function())
+ if (!entry.second->is_function())
{
- namelist[count++] = entry.name();
+ namelist[count++] = entry.second->name();
if (count >= ARRAY_LENGTH(namelist))
break;
}