diff options
| author | 2016-06-18 11:07:39 +0200 | |
|---|---|---|
| committer | 2016-06-18 15:32:15 +0200 | |
| commit | fc8e18d89312bb703297f92152a4eb5addace8a4 (patch) | |
| tree | e226beb051158254b98f79d96385901f78d3ed46 /src/emu/debug/debugcmd.cpp | |
| parent | d705e4a28d49b9eeeadc9c019a12cf580ae5ee8f (diff) | |
tagged_list to unordered_map for debugger (nw)
Diffstat (limited to 'src/emu/debug/debugcmd.cpp')
| -rw-r--r-- | src/emu/debug/debugcmd.cpp | 6 |
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; } |
